diff options
Diffstat (limited to 'kdat/OptionsDlg.cpp')
-rw-r--r-- | kdat/OptionsDlg.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kdat/OptionsDlg.cpp b/kdat/OptionsDlg.cpp index ba07773..f056bbf 100644 --- a/kdat/OptionsDlg.cpp +++ b/kdat/OptionsDlg.cpp @@ -24,7 +24,7 @@ #include "OptionsDlg.h" #include "OptionsDlgWidget.h" -#include <qcheckbox.h> +#include <tqcheckbox.h> #include <kcombobox.h> #include <klineedit.h> @@ -34,18 +34,18 @@ #include <kglobal.h> #include "OptionsDlg.moc" -OptionsDlg::OptionsDlg( QWidget* parent, const char* name ) +OptionsDlg::OptionsDlg( TQWidget* parent, const char* name ) : KDialogBase( Swallow, i18n ("Options"), Ok | Apply | Cancel, Ok, parent, name, true, true ), apply (0) { _baseWidget = new OptionsDlgWidget ( 0 ); setMainWidget (_baseWidget); - connect( _baseWidget, SIGNAL( valueChanged () ), this, SLOT( slotChanged() ) ); + connect( _baseWidget, TQT_SIGNAL( valueChanged () ), this, TQT_SLOT( slotChanged() ) ); - connect( this, SIGNAL( okClicked () ), this, SLOT( slotOK() ) ); - connect( this, SIGNAL( applyClicked() ), this, SLOT( slotApply() ) ); - connect( this, SIGNAL( cancelClicked() ), this, SLOT( slotCancel() ) ); + connect( this, TQT_SIGNAL( okClicked () ), this, TQT_SLOT( slotOK() ) ); + connect( this, TQT_SIGNAL( applyClicked() ), this, TQT_SLOT( slotApply() ) ); + connect( this, TQT_SIGNAL( cancelClicked() ), this, TQT_SLOT( slotCancel() ) ); int size = Options::instance()->getDefaultTapeSize(); if ( ( size >= 1024*1024 ) && ( size % ( 1024*1024 ) == 0 ) ) { |