summaryrefslogtreecommitdiffstats
path: root/src/kfeedback.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kfeedback.cpp')
-rw-r--r--src/kfeedback.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kfeedback.cpp b/src/kfeedback.cpp
index 5f55c00..e6af794 100644
--- a/src/kfeedback.cpp
+++ b/src/kfeedback.cpp
@@ -10,7 +10,7 @@
#include <tqheader.h>
-#include <layout.h>
+#include <tqlayout.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 * layout = new TQVBoxLayout( plainPage(), 0, spacingHint() );
+ TQVBoxLayout * tqlayout = 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 );
- layout->addWidget( _form );
+ tqlayout->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->setSizePolicy( pol );
+ label->tqsetSizePolicy( pol );
label = new TQLabel( hbox );
Q_CHECK_PTR( label );
label->setPixmap( KGlobal::iconLoader()->loadIcon( "edit", KIcon::Small ) );
- label->setSizePolicy( pol );
+ label->tqsetSizePolicy( pol );
label = new TQLabel( i18n( " must be answered before a mail can be sent.") , hbox );
Q_CHECK_PTR( label );
- label->setSizePolicy( pol );
+ label->tqsetSizePolicy( pol );
new TQWidget( hbox ); // Fill any leftover space to the right.