diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:07:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:07:08 -0600 |
commit | cc75da457e3eb043a2b98a60c0a23e6e45409ecb (patch) | |
tree | 3110066f285e79c5b97769ca0d61f4c8bac67f37 /plugin | |
parent | d67fe61a04761b2e04143fcca5d7be5e61a15585 (diff) | |
download | smb4k-cc75da457e3eb043a2b98a60c0a23e6e45409ecb.tar.gz smb4k-cc75da457e3eb043a2b98a60c0a23e6e45409ecb.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/smb4k_konqplugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugin/smb4k_konqplugin.cpp b/plugin/smb4k_konqplugin.cpp index 1a5a1c4..070dd7a 100644 --- a/plugin/smb4k_konqplugin.cpp +++ b/plugin/smb4k_konqplugin.cpp @@ -155,10 +155,10 @@ void KonqSidebar_Smb4K::slotSearch() if ( m_search_part ) { - TQGridLayout *tqlayout = new TQGridLayout( frame ); - tqlayout->setSpacing( 10 ); - tqlayout->setMargin( 0 ); - tqlayout->addWidget ( m_search_part->widget(), 0, 0, 0 ); + TQGridLayout *layout = new TQGridLayout( frame ); + layout->setSpacing( 10 ); + layout->setMargin( 0 ); + layout->addWidget ( m_search_part->widget(), 0, 0, 0 ); searchDialog->resize(400,300); // We do not want the dialog to be closed if the user presses return. // Instead we want that a search is started: |