diff options
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. |