summaryrefslogtreecommitdiffstats
path: root/kompare/komparenavtreepart
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 13:10:18 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 13:34:26 +0900
commitb0c86264e0cd10a0d3a47de3b05be453d9417bcd (patch)
tree7ae4535306d69dc4b55f68eae0a65298330ee610 /kompare/komparenavtreepart
parentd859a5c1f439fe432dedde763e40b2dad9875354 (diff)
downloadtdesdk-b0c86264e0cd10a0d3a47de3b05be453d9417bcd.tar.gz
tdesdk-b0c86264e0cd10a0d3a47de3b05be453d9417bcd.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kompare/komparenavtreepart')
-rw-r--r--kompare/komparenavtreepart/komparenavtreepart.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kompare/komparenavtreepart/komparenavtreepart.cpp b/kompare/komparenavtreepart/komparenavtreepart.cpp
index 1613897e..b9f1703e 100644
--- a/kompare/komparenavtreepart/komparenavtreepart.cpp
+++ b/kompare/komparenavtreepart/komparenavtreepart.cpp
@@ -82,14 +82,14 @@ KompareNavTreePart::KompareNavTreePart( TQWidget* parent, const char* name )
m_changesList->setRootIsDecorated( false );
m_changesList->setSorting( 0, true );
- connect( m_srcDirTree, TQT_SIGNAL(selectionChanged( TQListViewItem* )),
- this, TQT_SLOT(slotSrcDirTreeSelectionChanged( TQListViewItem* )) );
- connect( m_destDirTree, TQT_SIGNAL(selectionChanged( TQListViewItem* )),
- this, TQT_SLOT(slotDestDirTreeSelectionChanged( TQListViewItem* )) );
- connect( m_fileList, TQT_SIGNAL(selectionChanged( TQListViewItem* )),
- this, TQT_SLOT(slotFileListSelectionChanged( TQListViewItem* )) );
- connect( m_changesList, TQT_SIGNAL(selectionChanged( TQListViewItem* )),
- this, TQT_SLOT(slotChangesListSelectionChanged( TQListViewItem* )) );
+ connect( m_srcDirTree, TQ_SIGNAL(selectionChanged( TQListViewItem* )),
+ this, TQ_SLOT(slotSrcDirTreeSelectionChanged( TQListViewItem* )) );
+ connect( m_destDirTree, TQ_SIGNAL(selectionChanged( TQListViewItem* )),
+ this, TQ_SLOT(slotDestDirTreeSelectionChanged( TQListViewItem* )) );
+ connect( m_fileList, TQ_SIGNAL(selectionChanged( TQListViewItem* )),
+ this, TQ_SLOT(slotFileListSelectionChanged( TQListViewItem* )) );
+ connect( m_changesList, TQ_SIGNAL(selectionChanged( TQListViewItem* )),
+ this, TQ_SLOT(slotChangesListSelectionChanged( TQListViewItem* )) );
}
KompareNavTreePart::~KompareNavTreePart()