diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:57:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:57:39 -0600 |
commit | 30cc1f3718654ea8ccd594073d47544680d11182 (patch) | |
tree | 9f0a173e07dd98755eee6dd8a1332171378f2076 /plugin | |
parent | f3a9c5ace2048794e4432ddc71401b41d3361e4b (diff) | |
download | smb4k-30cc1f3718654ea8ccd594073d47544680d11182.tar.gz smb4k-30cc1f3718654ea8ccd594073d47544680d11182.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit f3a9c5ace2048794e4432ddc71401b41d3361e4b.
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 9a23567..1a5a1c4 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 <layout.h> +#include <tqlayout.h> #include <tqpainter.h> #include <tqheader.h> #include <tqvaluelist.h> @@ -155,10 +155,10 @@ void KonqSidebar_Smb4K::slotSearch() if ( m_search_part ) { - TQGridLayout *layout = new TQGridLayout( frame ); - layout->setSpacing( 10 ); - layout->setMargin( 0 ); - layout->addWidget ( m_search_part->widget(), 0, 0, 0 ); + TQGridLayout *tqlayout = new TQGridLayout( frame ); + tqlayout->setSpacing( 10 ); + tqlayout->setMargin( 0 ); + tqlayout->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: |