summaryrefslogtreecommitdiffstats
path: root/src/k3bfiletreecombobox.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:37:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 19:52:23 +0900
commitce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1 (patch)
treeb6897028e51844a0aeaafefc499fe4c213660b6f /src/k3bfiletreecombobox.cpp
parent6a101aa2ef54f02a292d6c28f23e2554a72e2bce (diff)
downloadk3b-ce3ab445.tar.gz
k3b-ce3ab445.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 61b79fc39298cb8646cee439dc032d5bf0169063)
Diffstat (limited to 'src/k3bfiletreecombobox.cpp')
-rw-r--r--src/k3bfiletreecombobox.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/k3bfiletreecombobox.cpp b/src/k3bfiletreecombobox.cpp
index 9c6a291..ed534dc 100644
--- a/src/k3bfiletreecombobox.cpp
+++ b/src/k3bfiletreecombobox.cpp
@@ -73,13 +73,13 @@ K3bFileTreeComboBox::K3bFileTreeComboBox( TQWidget* parent, const char* name )
// HACK! Why the hell is TQComboBox that closed???
listBox()->insertItem( "HACK" );
- connect( m_fileTreeView, TQT_SIGNAL(deviceExecuted(K3bDevice::Device*)),
- this, TQT_SLOT(slotDeviceExecuted(K3bDevice::Device*)) );
- connect( m_fileTreeView, TQT_SIGNAL(urlExecuted(const KURL&)),
- this, TQT_SLOT(slotUrlExecuted(const KURL&)) );
+ connect( m_fileTreeView, TQ_SIGNAL(deviceExecuted(K3bDevice::Device*)),
+ this, TQ_SLOT(slotDeviceExecuted(K3bDevice::Device*)) );
+ connect( m_fileTreeView, TQ_SIGNAL(urlExecuted(const KURL&)),
+ this, TQ_SLOT(slotUrlExecuted(const KURL&)) );
- connect( lineEdit(), TQT_SIGNAL(returnPressed()),
- this, TQT_SLOT(slotGoUrl()) );
+ connect( lineEdit(), TQ_SIGNAL(returnPressed()),
+ this, TQ_SLOT(slotGoUrl()) );
// TODO: subclass KURLCompletition to support the dev:/ stuff and block any non-local urls
}