summaryrefslogtreecommitdiffstats
path: root/src/viewpropertiesdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:33:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:33:17 +0900
commit1bc48a6ae2706e13093955e8181ac2f58a7ec3ac (patch)
tree1d67fedde5ab6603080c8c786d55a1fcb44c45c4 /src/viewpropertiesdialog.cpp
parent71d014f5e8c8816163fdfdf63fb20e73cd1870e4 (diff)
downloaddolphin-1bc48a6ae2706e13093955e8181ac2f58a7ec3ac.tar.gz
dolphin-1bc48a6ae2706e13093955e8181ac2f58a7ec3ac.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/viewpropertiesdialog.cpp')
-rw-r--r--src/viewpropertiesdialog.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/viewpropertiesdialog.cpp b/src/viewpropertiesdialog.cpp
index 449ad94..5f87a62 100644
--- a/src/viewpropertiesdialog.cpp
+++ b/src/viewpropertiesdialog.cpp
@@ -118,20 +118,20 @@ ViewPropertiesDialog::ViewPropertiesDialog(DolphinView* dolphinView) :
topLayout->addWidget(propsGroup);
topLayout->addWidget(buttonGroup);
- connect(m_viewMode, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotViewModeChanged(int)));
- connect(m_sorting, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotSortingChanged(int)));
- connect(m_sortOrder, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotSortOrderChanged(int)));
- connect(m_showHiddenFiles, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotShowHiddenFilesChanged()));
- connect(m_applyToCurrentFolder, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotApplyToCurrentFolder()));
- connect(m_applyToSubFolders, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotApplyToSubFolders()));
- connect(m_applyToAllFolders, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotApplyToAllFolders()));
+ connect(m_viewMode, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotViewModeChanged(int)));
+ connect(m_sorting, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotSortingChanged(int)));
+ connect(m_sortOrder, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotSortOrderChanged(int)));
+ connect(m_showHiddenFiles, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotShowHiddenFilesChanged()));
+ connect(m_applyToCurrentFolder, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotApplyToCurrentFolder()));
+ connect(m_applyToSubFolders, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotApplyToSubFolders()));
+ connect(m_applyToAllFolders, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotApplyToAllFolders()));
}
ViewPropertiesDialog::~ViewPropertiesDialog()