diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:51:49 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:51:49 +0000 |
commit | 4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch) | |
tree | b0a7cd1c184f0003c0292eb416ed27f674f9cc43 /kbugbuster/gui/serverconfigdialog.cpp | |
parent | 1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff) | |
download | tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbugbuster/gui/serverconfigdialog.cpp')
-rw-r--r-- | kbugbuster/gui/serverconfigdialog.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/kbugbuster/gui/serverconfigdialog.cpp b/kbugbuster/gui/serverconfigdialog.cpp index 32c5e241..feaab83d 100644 --- a/kbugbuster/gui/serverconfigdialog.cpp +++ b/kbugbuster/gui/serverconfigdialog.cpp @@ -6,45 +6,45 @@ #include <kdebug.h> #include <klocale.h> -#include <qlayout.h> -#include <qlineedit.h> -#include <qlabel.h> -#include <qvbox.h> -#include <qcombobox.h> +#include <tqlayout.h> +#include <tqlineedit.h> +#include <tqlabel.h> +#include <tqvbox.h> +#include <tqcombobox.h> -ServerConfigDialog::ServerConfigDialog( QWidget *parent, const char *name ) : +ServerConfigDialog::ServerConfigDialog( TQWidget *parent, const char *name ) : KDialogBase( parent, name, true, i18n("Edit Bugzilla Server"), Ok|Cancel ) { - QWidget *topFrame = makeMainWidget(); + TQWidget *topFrame = makeMainWidget(); - QGridLayout *topLayout = new QGridLayout( topFrame ); + TQGridLayout *topLayout = new TQGridLayout( topFrame ); topLayout->setSpacing( spacingHint() ); - QLabel *label; + TQLabel *label; - mServerName = new QLineEdit( topFrame ); - label = new QLabel( mServerName, i18n("Name:"), topFrame ); + mServerName = new TQLineEdit( topFrame ); + label = new TQLabel( mServerName, i18n("Name:"), topFrame ); topLayout->addWidget( label, 0, 0 ); topLayout->addWidget( mServerName, 0, 1 ); mServerName->setFocus(); - mServerUrl = new QLineEdit( topFrame ); - label = new QLabel( mServerUrl, i18n("URL:"), topFrame ); + mServerUrl = new TQLineEdit( topFrame ); + label = new TQLabel( mServerUrl, i18n("URL:"), topFrame ); topLayout->addWidget( label, 1, 0 ); topLayout->addWidget( mServerUrl, 1, 1 ); - mUser = new QLineEdit( topFrame ); - label = new QLabel( mUser, i18n("User:"), topFrame ); + mUser = new TQLineEdit( topFrame ); + label = new TQLabel( mUser, i18n("User:"), topFrame ); topLayout->addWidget( label, 2, 0 ); topLayout->addWidget( mUser, 2, 1 ); mPassword = new KPasswordEdit( topFrame ); - label = new QLabel( mPassword, i18n("Password:"), topFrame ); + label = new TQLabel( mPassword, i18n("Password:"), topFrame ); topLayout->addWidget( label, 3, 0 ); topLayout->addWidget( mPassword, 3, 1 ); - mVersion = new QComboBox( topFrame ); - label = new QLabel( mVersion, i18n("Bugzilla version:"), topFrame ); + mVersion = new TQComboBox( topFrame ); + label = new TQLabel( mVersion, i18n("Bugzilla version:"), topFrame ); topLayout->addWidget( label, 4, 0 ); topLayout->addWidget( mVersion, 4, 1 ); mVersion->insertStringList( BugServerConfig::bugzillaVersions() ); |