summaryrefslogtreecommitdiffstats
path: root/kbugbuster/gui/serverconfigdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbugbuster/gui/serverconfigdialog.cpp')
-rw-r--r--kbugbuster/gui/serverconfigdialog.cpp36
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() );