diff options
| author | 2007-01-23 22:24:31 +0000 | |
|---|---|---|
| committer | 2007-01-23 22:24:31 +0000 | |
| commit | daf9b531b3b8b058dc07b2e818876ece1943cb76 (patch) | |
| tree | e605c2b2a174ca3ddca4f35bae9d8c66e9497dac /src/modules/help/helpwindow.cpp | |
| parent | not important fix (diff) | |
| download | KVIrc-daf9b531b3b8b058dc07b2e818876ece1943cb76.tar.gz KVIrc-daf9b531b3b8b058dc07b2e818876ece1943cb76.tar.bz2 KVIrc-daf9b531b3b8b058dc07b2e818876ece1943cb76.zip | |
More Qt 4.x port
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@246 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/help/helpwindow.cpp')
| -rw-r--r-- | src/modules/help/helpwindow.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/help/helpwindow.cpp b/src/modules/help/helpwindow.cpp index eef121e19..c051ebbb8 100644 --- a/src/modules/help/helpwindow.cpp +++ b/src/modules/help/helpwindow.cpp @@ -73,14 +73,14 @@ KviHelpWindow::KviHelpWindow(KviFrame * lpFrm,const char * name) m_pSplitter = new QSplitter(QSplitter::Horizontal,this,"main_splitter"); m_pHelpWidget = new KviHelpWidget(m_pSplitter,lpFrm); - m_pToolBar=new QVBox(m_pSplitter); + m_pToolBar=new KviTalVBox(m_pSplitter); m_pTabWidget = new QTabWidget(m_pToolBar); - m_pIndexTab = new QVBox(m_pTabWidget); + m_pIndexTab = new KviTalVBox(m_pTabWidget); m_pTabWidget->insertTab(m_pIndexTab,__tr2qs("Index")); - QHBox* pSearchBox = new QHBox(m_pIndexTab); + KviTalHBox* pSearchBox = new KviTalHBox(m_pIndexTab); m_pIndexSearch = new QLineEdit(pSearchBox); connect( m_pIndexSearch, SIGNAL( textChanged(const QString&) ), this, SLOT( searchInIndex(const QString&) ) ); @@ -98,7 +98,7 @@ KviHelpWindow::KviHelpWindow(KviFrame * lpFrm,const char * name) connect(m_pIndexListBox,SIGNAL(selected(int)),this,SLOT(indexSelected ( int ))); m_pIndexListBox->sort(); - m_pSearchTab = new QVBox(m_pTabWidget); + m_pSearchTab = new KviTalVBox(m_pTabWidget); m_pTabWidget->insertTab(m_pSearchTab,__tr2qs("Search")); m_pTermsEdit = new QLineEdit(m_pSearchTab); |
