summaryrefslogtreecommitdiffstats
path: root/part/kxe_treeview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 16:37:54 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-31 22:21:37 +0900
commit9e94ee99cd260efb279f2c810ea2c2cc7839e6ae (patch)
tree7d5a63225f7516ec924502bbbfcabf5d00ebd61f /part/kxe_treeview.cpp
parent21ab29e9b899ae5d211ac58ca7fea4e34f46e4b7 (diff)
downloadkxmleditor-9e94ee99cd260efb279f2c810ea2c2cc7839e6ae.tar.gz
kxmleditor-9e94ee99cd260efb279f2c810ea2c2cc7839e6ae.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 4d0e92e869aeab286a753010ee87be3bd30cafe4)
Diffstat (limited to 'part/kxe_treeview.cpp')
-rw-r--r--part/kxe_treeview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/part/kxe_treeview.cpp b/part/kxe_treeview.cpp
index e16b3c8..bcb0bd8 100644
--- a/part/kxe_treeview.cpp
+++ b/part/kxe_treeview.cpp
@@ -55,8 +55,8 @@ KXE_TreeView::KXE_TreeView( KXMLGUIClient * pGUIClient, TQWidget * pParent, cons
setSelectionMode(TQListView::Single);
- connect( this, SIGNAL(selectionChanged()), this, SLOT(slotSelectionChanged()) );
- connect( this, SIGNAL(expanded(TQListViewItem*)), this, SLOT(slotItemExpanded(TQListViewItem*)) );
+ connect( this, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(slotSelectionChanged()) );
+ connect( this, TQ_SIGNAL(expanded(TQListViewItem*)), this, TQ_SLOT(slotItemExpanded(TQListViewItem*)) );
setReadWrite(false);
@@ -65,12 +65,12 @@ KXE_TreeView::KXE_TreeView( KXMLGUIClient * pGUIClient, TQWidget * pParent, cons
m_pDropItem = 0;
m_autoOpenTimer = new TQTimer(this);
- connect(m_autoOpenTimer, SIGNAL(timeout()), this, SLOT(slotAutoOpenFolder()));
+ connect(m_autoOpenTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotAutoOpenFolder()));
// Apply current configuration
slotTreeViewSettingsChanged();
// and make sure to be informed about its changes.
- connect( KXMLEditorFactory::configuration()->treeview(), SIGNAL(sigChanged()), this, SLOT(slotTreeViewSettingsChanged()) );
+ connect( KXMLEditorFactory::configuration()->treeview(), TQ_SIGNAL(sigChanged()), this, TQ_SLOT(slotTreeViewSettingsChanged()) );
}
void KXE_TreeView::setReadWrite( bool fReadWrite )