diff options
author | Timothy Pearson <[email protected]> | 2011-12-21 14:04:18 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-23 02:38:43 +0200 |
commit | 79f7061c5e7cc9c38e2a98dad7c005ce4ff836c8 (patch) | |
tree | 53d5cf7b22fc56ded68d350630842aa639752360 /src/kchmindexwindow.cpp | |
parent | 6c8fbb5199ea86a9ef727aa258e730006b3876b6 (diff) | |
download | kchmviewer-79f7061c5e7cc9c38e2a98dad7c005ce4ff836c8.tar.gz kchmviewer-79f7061c5e7cc9c38e2a98dad7c005ce4ff836c8.zip |
Rename obsolete tq methods to standard names
(cherry picked from commit de122aa7805984226a4270c63b0f69e7b5022930)
Diffstat (limited to 'src/kchmindexwindow.cpp')
-rw-r--r-- | src/kchmindexwindow.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kchmindexwindow.cpp b/src/kchmindexwindow.cpp index 9473cf2..a4c8f60 100644 --- a/src/kchmindexwindow.cpp +++ b/src/kchmindexwindow.cpp @@ -34,8 +34,8 @@ KCHMIndexWindow::KCHMIndexWindow ( TQWidget * parent, const char * name, WFlags f ) : TQWidget (parent, name, f) { - TQVBoxLayout * tqlayout = new TQVBoxLayout (this); - tqlayout->setMargin (5); + TQVBoxLayout * layout = new TQVBoxLayout (this); + layout->setMargin (5); m_indexFinder = new TQLineEdit (this); m_indexFinder->setFocus(); @@ -47,9 +47,9 @@ KCHMIndexWindow::KCHMIndexWindow ( TQWidget * parent, const char * name, WFlags m_indexList->setShowToolTips(true); //m_indexList->setSorting( 0, true ); - tqlayout->addWidget (m_indexFinder); - tqlayout->addSpacing (10); - tqlayout->addWidget (m_indexList); + layout->addWidget (m_indexFinder); + layout->addSpacing (10); + layout->addWidget (m_indexList); connect( m_indexFinder, TQT_SIGNAL( textChanged (const TQString &) ), |