diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:33:51 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:33:51 -0600 |
commit | f3a9c5ace2048794e4432ddc71401b41d3361e4b (patch) | |
tree | 056ce78ff33ac3180cfa32d9ed19f99653503da1 /plugin | |
parent | 82730194bb59f9d0ef2b7a0b7a2ecf479f821268 (diff) | |
download | smb4k-f3a9c5ace2048794e4432ddc71401b41d3361e4b.tar.gz smb4k-f3a9c5ace2048794e4432ddc71401b41d3361e4b.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/smb4k_konqplugin.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugin/smb4k_konqplugin.cpp b/plugin/smb4k_konqplugin.cpp index 1a5a1c4..9a23567 100644 --- a/plugin/smb4k_konqplugin.cpp +++ b/plugin/smb4k_konqplugin.cpp @@ -24,7 +24,7 @@ #include <tqtooltip.h> #include <tqstring.h> #include <tqwidget.h> -#include <tqlayout.h> +#include <layout.h> #include <tqpainter.h> #include <tqheader.h> #include <tqvaluelist.h> @@ -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: |