summaryrefslogtreecommitdiffstats
path: root/src/debugging
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-09 19:12:21 +0900
committerMichele Calgaro <[email protected]>2024-01-09 19:12:21 +0900
commit59999a5ad2e7a43bba88d4d25ef970c2fbc575f0 (patch)
treea7bd90575f42faec41c75058e1a14b73b808973f /src/debugging
parentfbbe9cf4e456b0e045d43979ecd4dd620e4183fe (diff)
downloaduniversal-indent-gui-tqt-59999a5ad2e7a43bba88d4d25ef970c2fbc575f0.tar.gz
universal-indent-gui-tqt-59999a5ad2e7a43bba88d4d25ef970c2fbc575f0.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/debugging')
-rw-r--r--src/debugging/TSLogger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debugging/TSLogger.cpp b/src/debugging/TSLogger.cpp
index c79dacb..caa29ad 100644
--- a/src/debugging/TSLogger.cpp
+++ b/src/debugging/TSLogger.cpp
@@ -91,8 +91,8 @@ TSLogger::TSLogger(int verboseLevel) :
m_logFileInitState = NOTINITIALZED;
- connect(m_TSLoggerDialogForm->openLogFileFolderToolButton, SIGNAL(clicked()), this,
- SLOT(openLogFileFolder()));
+ connect(m_TSLoggerDialogForm->openLogFileFolderToolButton, TQ_SIGNAL(clicked()), this,
+ TQ_SLOT(openLogFileFolder()));
// Make the main application not to wait for the logging window to close.
setAttribute(TQt::WA_QuitOnClose, false);