diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:33:13 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:33:13 -0600 |
commit | 1d9c18c8a07f4833695c6a2ab978698ae1cc90e7 (patch) | |
tree | c61f8778c1c540d79ed77c3f69018fcba0bca646 /src/kfeedback.cpp | |
parent | 2622d5ad003c636cda4bc36246df8a7fe9ac5d9f (diff) | |
download | kvpnc-1d9c18c8a07f4833695c6a2ab978698ae1cc90e7.tar.gz kvpnc-1d9c18c8a07f4833695c6a2ab978698ae1cc90e7.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/kfeedback.cpp')
-rw-r--r-- | src/kfeedback.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kfeedback.cpp b/src/kfeedback.cpp index e6af794..5f55c00 100644 --- a/src/kfeedback.cpp +++ b/src/kfeedback.cpp @@ -10,7 +10,7 @@ #include <tqheader.h> -#include <tqlayout.h> +#include <layout.h> #include <tqlabel.h> #include <tqglobal.h> #include <tqmultilineedit.h> @@ -35,7 +35,7 @@ KFeedbackDialog::KFeedbackDialog( const TQString & feedbackMailAddress, | ( helpTopic.isEmpty() ? 0 : (int) Help ), // buttonMask Apply ) // defaultButton { - TQVBoxLayout * tqlayout = new TQVBoxLayout( plainPage(), 0, spacingHint() ); + TQVBoxLayout * layout = new TQVBoxLayout( plainPage(), 0, spacingHint() ); setButtonApply( KGuiItem( i18n( "&Mail this..." ) ) ); if ( ! helpTopic.isEmpty() ) @@ -44,7 +44,7 @@ KFeedbackDialog::KFeedbackDialog( const TQString & feedbackMailAddress, _form = new KFeedbackForm( feedbackMailAddress, plainPage() ); Q_CHECK_PTR( _form ); - tqlayout->addWidget( _form ); + layout->addWidget( _form ); checkSendButton(); connect( this, TQT_SIGNAL( applyClicked() ), @@ -113,16 +113,16 @@ KFeedbackForm::KFeedbackForm( const TQString & feedbackMailAddress, label = new TQLabel( i18n( "Questions marked with " ), hbox ); Q_CHECK_PTR( label ); - label->tqsetSizePolicy( pol ); + label->setSizePolicy( pol ); label = new TQLabel( hbox ); Q_CHECK_PTR( label ); label->setPixmap( KGlobal::iconLoader()->loadIcon( "edit", KIcon::Small ) ); - label->tqsetSizePolicy( pol ); + label->setSizePolicy( pol ); label = new TQLabel( i18n( " must be answered before a mail can be sent.") , hbox ); Q_CHECK_PTR( label ); - label->tqsetSizePolicy( pol ); + label->setSizePolicy( pol ); new TQWidget( hbox ); // Fill any leftover space to the right. |