aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/help/helpwindow.cpp
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2007-01-26 03:54:22 +0000
committerGravatar Szymon Tomasz Stefanek2007-01-26 03:54:22 +0000
commit1a8a7e6f145613c34ff0604b95370995fc625ef2 (patch)
tree79b63ab083ae2eecfbf98170e9d50731f6bb4d67 /src/modules/help/helpwindow.cpp
parentfix win compilation and update win projects (diff)
downloadKVIrc-1a8a7e6f145613c34ff0604b95370995fc625ef2.tar.gz
KVIrc-1a8a7e6f145613c34ff0604b95370995fc625ef2.tar.bz2
KVIrc-1a8a7e6f145613c34ff0604b95370995fc625ef2.zip
More Qt 4.x port and the torrent module by Alexander Stillich
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@255 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/help/helpwindow.cpp')
-rw-r--r--src/modules/help/helpwindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/help/helpwindow.cpp b/src/modules/help/helpwindow.cpp
index c051ebbb8..eb40416ac 100644
--- a/src/modules/help/helpwindow.cpp
+++ b/src/modules/help/helpwindow.cpp
@@ -92,7 +92,7 @@ KviHelpWindow::KviHelpWindow(KviFrame * lpFrm,const char * name)
connect(pBtnRefreshIndex,SIGNAL(clicked()),this,SLOT(refreshIndex()));
QToolTip::add( pBtnRefreshIndex, __tr2qs("Refresh index") );
- m_pIndexListBox = new QListBox(m_pIndexTab);
+ m_pIndexListBox = new KviTalListBox(m_pIndexTab);
QStringList docList=g_pDocIndex->titlesList();
m_pIndexListBox->insertStringList(docList);
connect(m_pIndexListBox,SIGNAL(selected(int)),this,SLOT(indexSelected ( int )));
@@ -107,7 +107,7 @@ KviHelpWindow::KviHelpWindow(KviFrame * lpFrm,const char * name)
connect( m_pTermsEdit, SIGNAL( returnPressed() ),
this, SLOT( startSearch() ) );
- m_pResultBox = new QListBox(m_pSearchTab);
+ m_pResultBox = new KviTalListBox(m_pSearchTab);
connect(m_pResultBox,SIGNAL(selected(int)),this,SLOT(searchSelected ( int )));
QValueList<int> li;
@@ -245,7 +245,7 @@ void KviHelpWindow::showIndexTopic()
void KviHelpWindow::searchInIndex( const QString &s )
{
- QListBoxItem *i = m_pIndexListBox->firstItem();
+ KviTalListBoxItem *i = m_pIndexListBox->firstItem();
QString sl = s.lower();
while ( i ) {
QString t = i->text();