aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/help
diff options
context:
space:
mode:
authorGravatar Fabio Bas2008-09-25 20:29:42 +0000
committerGravatar Fabio Bas2008-09-25 20:29:42 +0000
commite5bee4d31b2c198c6c5f33fe6046425c84b067c9 (patch)
treec16a5167a49f96d519b7ea1466d66c835e951124 /src/modules/help
parentupdate win projects + some compilation fixes (diff)
downloadKVIrc-e5bee4d31b2c198c6c5f33fe6046425c84b067c9.tar.gz
KVIrc-e5bee4d31b2c198c6c5f33fe6046425c84b067c9.tar.bz2
KVIrc-e5bee4d31b2c198c6c5f33fe6046425c84b067c9.zip
removed some old references to qt3
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2571 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/help')
-rw-r--r--src/modules/help/helpwindow.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/modules/help/helpwindow.cpp b/src/modules/help/helpwindow.cpp
index 0c5250c42..dfcebeeb1 100644
--- a/src/modules/help/helpwindow.cpp
+++ b/src/modules/help/helpwindow.cpp
@@ -244,10 +244,9 @@ void KviHelpWindow::showIndexTopic()
void KviHelpWindow::searchInIndex( const QString &s )
{
- QListWidgetItem *item ;//= m_pIndexListWidget->firstItem();
+ QListWidgetItem *item ;
QString sl = s.toLower();
for(int i=0;i<m_pIndexListWidget->count();i++)
-// while ( i ) {
{
item=m_pIndexListWidget->item(i);
QString t = item->text();
@@ -257,7 +256,6 @@ void KviHelpWindow::searchInIndex( const QString &s )
m_pIndexListWidget->scrollToItem(item,QAbstractItemView::PositionAtTop);
break;
}
- // i = i->next();
}
}