diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:48:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:48:06 +0000 |
commit | 47c8a359c5276062c4bc17f0e82410f29081b502 (patch) | |
tree | 2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /ksirc/ssfepromptdata.cpp | |
parent | 6f82532777a35e0e60bbd2b290b2e93e646f349b (diff) | |
download | tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksirc/ssfepromptdata.cpp')
-rw-r--r-- | ksirc/ssfepromptdata.cpp | 14 |
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 ); |