summaryrefslogtreecommitdiffstats
path: root/kdat/OptionsDlg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 10:40:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 10:44:36 +0900
commited7858de3a395180d6ec0c03d8358610b36938ea (patch)
tree1b81472d6cc0e957c603add6ab33814330e4afbe /kdat/OptionsDlg.cpp
parent41b29e64b5883035aba22b719c3174ed13d3a65a (diff)
downloadtdeadmin-ed7858de3a395180d6ec0c03d8358610b36938ea.tar.gz
tdeadmin-ed7858de3a395180d6ec0c03d8358610b36938ea.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kdat/OptionsDlg.cpp')
-rw-r--r--kdat/OptionsDlg.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdat/OptionsDlg.cpp b/kdat/OptionsDlg.cpp
index 3f29fae..22d7304 100644
--- a/kdat/OptionsDlg.cpp
+++ b/kdat/OptionsDlg.cpp
@@ -41,11 +41,11 @@ OptionsDlg::OptionsDlg( TQWidget* parent, const char* name )
_baseWidget = new OptionsDlgWidget ( 0 );
setMainWidget (_baseWidget);
- connect( _baseWidget, TQT_SIGNAL( valueChanged () ), this, TQT_SLOT( slotChanged() ) );
+ connect( _baseWidget, TQ_SIGNAL( valueChanged () ), this, TQ_SLOT( slotChanged() ) );
- 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() ) );
+ connect( this, TQ_SIGNAL( okClicked () ), this, TQ_SLOT( slotOK() ) );
+ connect( this, TQ_SIGNAL( applyClicked() ), this, TQ_SLOT( slotApply() ) );
+ connect( this, TQ_SIGNAL( cancelClicked() ), this, TQ_SLOT( slotCancel() ) );
int size = Options::instance()->getDefaultTapeSize();
if ( ( size >= 1024*1024 ) && ( size % ( 1024*1024 ) == 0 ) ) {