summaryrefslogtreecommitdiffstats
path: root/knights/dlg_login.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knights/dlg_login.cpp')
-rw-r--r--knights/dlg_login.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/knights/dlg_login.cpp b/knights/dlg_login.cpp
index 7cd5c49..415c769 100644
--- a/knights/dlg_login.cpp
+++ b/knights/dlg_login.cpp
@@ -29,7 +29,7 @@ dlg_login::dlg_login(TQWidget *parent, const char *name, resource *rsrc) :
BOX_Parent = makeVBoxMainWidget();
/* Select which server to connect to */
- GROUP_Select_Server = new TQGroupBox( 1, Qt::Vertical, i18n( "Select Server" ), BOX_Parent );
+ GROUP_Select_Server = new TQGroupBox( 1, TQt::Vertical, i18n( "Select Server" ), BOX_Parent );
COMBO_Select_Server = new KComboBox ( GROUP_Select_Server );
COMBO_Select_Server->setEditable( FALSE );
@@ -48,7 +48,7 @@ dlg_login::dlg_login(TQWidget *parent, const char *name, resource *rsrc) :
/* connect to right signal to the combobox */
connect( COMBO_Select_Server, TQT_SIGNAL( activated(const TQString &) ), this, TQT_SLOT( slotUpdateUser(const TQString &) ) );
- GROUP_Username = new TQGroupBox( 1, Qt::Horizontal, i18n("User info"), BOX_Parent);
+ GROUP_Username = new TQGroupBox( 1, TQt::Horizontal, i18n("User info"), BOX_Parent);
BOX_ALIGN = new TQHBox( GROUP_Username );
BOX_TEXT = new TQVBox( BOX_ALIGN );
TEXT_Login = new TQLabel( BOX_TEXT );