summaryrefslogtreecommitdiffstats
path: root/kdat/IndexDlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdat/IndexDlg.cpp')
-rw-r--r--kdat/IndexDlg.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdat/IndexDlg.cpp b/kdat/IndexDlg.cpp
index 2cfedcf..b7abf1d 100644
--- a/kdat/IndexDlg.cpp
+++ b/kdat/IndexDlg.cpp
@@ -109,17 +109,17 @@ IndexDlg::IndexDlg( Tape* tape, TQWidget* parent, const char* name )
_ok = new KPushButton( KStdGuiItem::ok(), this );
_ok->setFixedSize( 80, _ok->sizeHint().height() );
- connect( _ok, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotOK() ) );
+ connect( _ok, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotOK() ) );
_ok->setEnabled( FALSE );
_save = new TQPushButton( i18n( "Save Log..." ), this );
_save->setFixedSize( 80, _save->sizeHint().height() );
- connect( _save, TQT_SIGNAL( clicked() ), _log, TQT_SLOT( save() ) );
+ connect( _save, TQ_SIGNAL( clicked() ), _log, TQ_SLOT( save() ) );
_save->setEnabled( FALSE );
_abort = new TQPushButton( i18n( "Abort" ), this );
_abort->setFixedSize( 80, _abort->sizeHint().height() );
- connect( _abort, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotAbort() ) );
+ connect( _abort, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotAbort() ) );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 );
@@ -263,7 +263,7 @@ void IndexDlg::timerEvent( TQTimerEvent* )
delete _tarParser;
_tarParser = new TarParser();
- connect( _tarParser, TQT_SIGNAL( sigEntry( const TQString &, int, int, int ) ), this, TQT_SLOT( slotEntry( const TQString &, int, int, int ) ) );
+ connect( _tarParser, TQ_SIGNAL( sigEntry( const TQString &, int, int, int ) ), this, TQ_SLOT( slotEntry( const TQString &, int, int, int ) ) );
int endBlock = 0;
int leftover = 0;