diff options
Diffstat (limited to 'knights/dlg_engine.cpp')
-rw-r--r-- | knights/dlg_engine.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/knights/dlg_engine.cpp b/knights/dlg_engine.cpp index 800cd50..34a941e 100644 --- a/knights/dlg_engine.cpp +++ b/knights/dlg_engine.cpp @@ -34,28 +34,28 @@ dlg_engine::dlg_engine(TQWidget *parent, const char *name, resource *Rsrc, TQStr BOX_Parent = makeVBoxMainWidget(); BOX_NameProto = new TQHBox( BOX_Parent ); BOX_Name = new TQGroupBox( 1, - Qt::Horizontal, + TQt::Horizontal, i18n( "Engine Name" ), BOX_NameProto ); EDIT_Name = new KLineEdit( BOX_Name ); BOX_Protocol = new TQGroupBox( 1, - Qt::Horizontal, + TQt::Horizontal, i18n( "Protocol" ), BOX_NameProto ); EDIT_Protocol = new KComboBox( BOX_Protocol ); BOX_Filename = new TQGroupBox( 2, - Qt::Horizontal, + TQt::Horizontal, i18n( "Engine Filename" ), BOX_Parent ); EDIT_Filename = new KLineEdit( BOX_Filename ); BUTTON_Filename = new TQPushButton( BOX_Filename ); BOX_Arguments = new TQGroupBox( 1, - Qt::Horizontal, + TQt::Horizontal, i18n( "Command Line Arguments" ), BOX_Parent ); EDIT_Arguments = new KLineEdit( BOX_Arguments ); BOX_LogFile = new TQGroupBox( 2, - Qt::Horizontal, + TQt::Horizontal, i18n( "Log File" ), BOX_Parent ); EDIT_LogFile = new KLineEdit( BOX_LogFile ); |