summaryrefslogtreecommitdiffstats
path: root/kdirstat/kfeedback.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdirstat/kfeedback.cpp')
-rw-r--r--kdirstat/kfeedback.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdirstat/kfeedback.cpp b/kdirstat/kfeedback.cpp
index 21e54ff..9bd80e8 100644
--- a/kdirstat/kfeedback.cpp
+++ b/kdirstat/kfeedback.cpp
@@ -10,7 +10,7 @@
#include <tqheader.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <tqlabel.h>
#include <tqmultilineedit.h>
#include <tqhbox.h>
@@ -34,7 +34,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() )
@@ -43,7 +43,7 @@ KFeedbackDialog::KFeedbackDialog( const TQString & feedbackMailAddress,
_form = new KFeedbackForm( feedbackMailAddress, plainPage() );
CHECK_PTR( _form );
- tqlayout->addWidget( _form );
+ layout->addWidget( _form );
checkSendButton();
connect( this, TQT_SIGNAL( applyClicked() ),
@@ -112,16 +112,16 @@ KFeedbackForm::KFeedbackForm( const TQString & feedbackMailAddress,
label = new TQLabel( i18n( "Questions marked with " ), hbox );
CHECK_PTR( label );
- label->tqsetSizePolicy( pol );
+ label->setSizePolicy( pol );
label = new TQLabel( hbox );
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 );
CHECK_PTR( label );
- label->tqsetSizePolicy( pol );
+ label->setSizePolicy( pol );
new TQWidget( hbox ); // Fill any leftover space to the right.