summaryrefslogtreecommitdiffstats
path: root/knights/dlg_server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knights/dlg_server.cpp')
-rw-r--r--knights/dlg_server.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/knights/dlg_server.cpp b/knights/dlg_server.cpp
index decefe5..4c8e4f9 100644
--- a/knights/dlg_server.cpp
+++ b/knights/dlg_server.cpp
@@ -33,26 +33,26 @@ dlg_server::dlg_server(TQWidget *parent, const char *name, resource *Rsrc, TQStr
BOX_Parent = makeVBoxMainWidget();
BOX_Name = new TQGroupBox( 1,
- Qt::Horizontal,
+ TQt::Horizontal,
i18n( "Server Name" ),
BOX_Parent );
EDIT_Name = new KLineEdit( BOX_Name );
BOX_URLPort = new TQHBox( BOX_Parent );
BOX_URL = new TQGroupBox( 1,
- Qt::Horizontal,
+ TQt::Horizontal,
i18n( "Server URL" ),
BOX_URLPort );
EDIT_URL = new KLineEdit( BOX_URL );
BOX_Port = new TQGroupBox( 1,
- Qt::Horizontal,
+ TQt::Horizontal,
i18n( "Server Port" ),
BOX_URLPort );
EDIT_Port = new KLineEdit( BOX_Port );
BOX_UNameStore = new TQHBox( BOX_Parent );
BOX_UserName = new TQGroupBox( 1,
- Qt::Horizontal,
+ TQt::Horizontal,
i18n( "Username" ),
BOX_UNameStore );
EDIT_UserName = new KLineEdit( BOX_UserName );
@@ -60,14 +60,14 @@ dlg_server::dlg_server(TQWidget *parent, const char *name, resource *Rsrc, TQStr
BOX_Pass = new TQHBox( BOX_Parent );
BOX_Password = new TQGroupBox( 1,
- Qt::Vertical,
+ TQt::Vertical,
i18n( "Password" ),
BOX_Pass );
EDIT_Password = new KLineEdit( BOX_Password );
EDIT_Password->setEchoMode( TQLineEdit::Password );
BOX_PasswordRetype = new TQGroupBox( 1,
- Qt::Vertical,
+ TQt::Vertical,
i18n( "Confirm Password" ),
BOX_Pass );
EDIT_PasswordRetype = new KLineEdit( BOX_PasswordRetype );
@@ -75,7 +75,7 @@ dlg_server::dlg_server(TQWidget *parent, const char *name, resource *Rsrc, TQStr
/* Use Timeseal? */
GROUP_Timeseal = new TQGroupBox( 2,
- Qt::Horizontal,
+ TQt::Horizontal,
i18n( "Timeseal" ),
BOX_Parent );
EDIT_Timeseal = new KLineEdit( GROUP_Timeseal );
@@ -84,7 +84,7 @@ dlg_server::dlg_server(TQWidget *parent, const char *name, resource *Rsrc, TQStr
connect( BUTTON_Timeseal, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slot_Timeseal() ) );
BOX_LogFile = new TQGroupBox( 2,
- Qt::Horizontal,
+ TQt::Horizontal,
i18n( "Log File" ),
BOX_Parent );
EDIT_LogFile = new KLineEdit( BOX_LogFile );