summaryrefslogtreecommitdiffstats
path: root/ksirc/ssfepromptdata.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksirc/ssfepromptdata.cpp')
-rw-r--r--ksirc/ssfepromptdata.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/ksirc/ssfepromptdata.cpp b/ksirc/ssfepromptdata.cpp
index ce1dc368..94e52002 100644
--- a/ksirc/ssfepromptdata.cpp
+++ b/ksirc/ssfepromptdata.cpp
@@ -20,13 +20,13 @@
ssfepromptdata::ssfepromptdata
(
- QWidget* parent,
+ TQWidget* parent,
const char* name
)
:
Inherited( parent, name, TRUE, 20480 )
{
- prompt = new QLabel( this, "Label_1" );
+ prompt = new TQLabel( this, "Label_1" );
prompt->setGeometry( 10, 10, 220, 30 );
prompt->setMinimumSize( 10, 10 );
prompt->setMaximumSize( 32767, 32767 );
@@ -34,22 +34,22 @@ ssfepromptdata::ssfepromptdata
prompt->setAlignment( 289 );
prompt->setMargin( -1 );
- SLine = new QLineEdit( this, "LineEdit_1" );
+ SLine = new TQLineEdit( this, "LineEdit_1" );
SLine->setGeometry( 240, 10, 100, 30 );
SLine->setMinimumSize( 10, 10 );
SLine->setMaximumSize( 32767, 32767 );
- connect( SLine, SIGNAL(returnPressed()), SLOT(terminate()) );
+ connect( SLine, TQT_SIGNAL(returnPressed()), TQT_SLOT(terminate()) );
SLine->setText( "" );
SLine->setMaxLength( 32767 );
- SLine->setEchoMode( QLineEdit::Normal );
+ SLine->setEchoMode( TQLineEdit::Normal );
SLine->setFrame( TRUE );
- QPushButton* dlgedit_PushButton_1;
+ TQPushButton* dlgedit_PushButton_1;
dlgedit_PushButton_1 = new KPushButton( KStdGuiItem::ok(), this, "PushButton_1" );
dlgedit_PushButton_1->setGeometry( 240, 50, 100, 30 );
dlgedit_PushButton_1->setMinimumSize( 10, 10 );
dlgedit_PushButton_1->setMaximumSize( 32767, 32767 );
- connect( dlgedit_PushButton_1, SIGNAL(clicked()), SLOT(terminate()) );
+ connect( dlgedit_PushButton_1, TQT_SIGNAL(clicked()), TQT_SLOT(terminate()) );
dlgedit_PushButton_1->setAutoRepeat( FALSE );
dlgedit_PushButton_1->setAutoDefault( TRUE );