summaryrefslogtreecommitdiffstats
path: root/tdedebugdialog/tdelistdebugdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-12 10:51:50 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-16 10:03:43 +0900
commita4241b7911d2e0b36edfb02f616b8b282050c0ec (patch)
tree316c9a3298857645d5da57b682fce707c8e2a907 /tdedebugdialog/tdelistdebugdialog.cpp
parentf9d06cee3d2b4ffe415b1d52c9ad5575643a9e34 (diff)
downloadtdebase-a4241b7911d2e0b36edfb02f616b8b282050c0ec.tar.gz
tdebase-a4241b7911d2e0b36edfb02f616b8b282050c0ec.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdedebugdialog/tdelistdebugdialog.cpp')
-rw-r--r--tdedebugdialog/tdelistdebugdialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tdedebugdialog/tdelistdebugdialog.cpp b/tdedebugdialog/tdelistdebugdialog.cpp
index d447b3747..4c3bb9f0e 100644
--- a/tdedebugdialog/tdelistdebugdialog.cpp
+++ b/tdedebugdialog/tdelistdebugdialog.cpp
@@ -40,8 +40,8 @@ TDEListDebugDialog::TDEListDebugDialog( TQStringList areaList, TQWidget *parent,
m_incrSearch = new KLineEdit( this );
lay->addWidget( m_incrSearch );
- connect( m_incrSearch, TQT_SIGNAL( textChanged( const TQString& ) ),
- TQT_SLOT( generateCheckBoxes( const TQString& ) ) );
+ connect( m_incrSearch, TQ_SIGNAL( textChanged( const TQString& ) ),
+ TQ_SLOT( generateCheckBoxes( const TQString& ) ) );
TQScrollView * scrollView = new TQScrollView( this );
scrollView->setResizePolicy( TQScrollView::AutoOneFit );
@@ -58,8 +58,8 @@ TDEListDebugDialog::TDEListDebugDialog( TQStringList areaList, TQWidget *parent,
selectButs->addWidget( all );
selectButs->addWidget( none );
- connect( all, TQT_SIGNAL( clicked() ), this, TQT_SLOT( selectAll() ) );
- connect( none, TQT_SIGNAL( clicked() ), this, TQT_SLOT( deSelectAll() ) );
+ connect( all, TQ_SIGNAL( clicked() ), this, TQ_SLOT( selectAll() ) );
+ connect( none, TQ_SIGNAL( clicked() ), this, TQ_SLOT( deSelectAll() ) );
buildButtons( lay );
resize( 350, 400 );