diff options
author | Timothy Pearson <[email protected]> | 2011-12-16 09:57:14 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-16 09:57:14 -0600 |
commit | c1ef065782051db96cdfd32cf55be6408c2a9d22 (patch) | |
tree | 0bc3705b597f8c98b2b9992d22ab9620df50b877 /src/gui/contexthelp.cpp | |
parent | bab171b2a7d7f36e2d5dd510df80fc8cb4a6b06f (diff) | |
download | ktechlab-c1ef065782051db96cdfd32cf55be6408c2a9d22.tar.gz ktechlab-c1ef065782051db96cdfd32cf55be6408c2a9d22.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit bab171b2a7d7f36e2d5dd510df80fc8cb4a6b06f.
Diffstat (limited to 'src/gui/contexthelp.cpp')
-rw-r--r-- | src/gui/contexthelp.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/contexthelp.cpp b/src/gui/contexthelp.cpp index 050eecb..f7a2432 100644 --- a/src/gui/contexthelp.cpp +++ b/src/gui/contexthelp.cpp @@ -16,10 +16,10 @@ #include <klocale.h> -#include <layout.h> +#include <tqlayout.h> #include <tqlabel.h> #include <tqregexp.h> -#include <textbrowser.h> +#include <tqtextbrowser.h> #include <tqwhatsthis.h> #include <assert.h> @@ -42,18 +42,18 @@ ContextHelp::ContextHelp( KateMDI::ToolView * parent ) { TQWhatsThis::add( this, i18n("Provides context-sensitive help relevant to the current editing being performed.") ); - TQVBoxLayout *vlayout = new TQVBoxLayout( this, 0, 6 ); + TQVBoxLayout *vtqlayout = new TQVBoxLayout( this, 0, 6 ); m_nameLbl = new TQLabel( this, "" ); - vlayout->addWidget(m_nameLbl); - vlayout->addSpacing(8); + vtqlayout->addWidget(m_nameLbl); + vtqlayout->addSpacing(8); m_info = new TQTextBrowser( this, "" ); - vlayout->addWidget(m_info); - m_info->setSizePolicy( TQSizePolicy::MinimumExpanding, TQSizePolicy::MinimumExpanding ); + vtqlayout->addWidget(m_info); + m_info->tqsetSizePolicy( TQSizePolicy::MinimumExpanding, TQSizePolicy::MinimumExpanding ); TQSpacerItem *spacer3 = new TQSpacerItem( 1, 1, TQSizePolicy::Preferred, TQSizePolicy::Preferred ); - vlayout->addItem(spacer3); + vtqlayout->addItem(spacer3); slotClear(); } |