summaryrefslogtreecommitdiffstats
path: root/chalk/ui/kis_tool_manager.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-04 10:30:32 +0900
committerMichele Calgaro <[email protected]>2024-01-04 12:36:03 +0900
commitc0332621bc998c9786f4841e86a62b7711fe4abf (patch)
tree38b3ab6688de7a9396a1c5993a8ec265f5f33b64 /chalk/ui/kis_tool_manager.cpp
parent6c81ff8d61ec679e735d3fbd875583b12f0ef0a5 (diff)
downloadkoffice-c0332621bc998c9786f4841e86a62b7711fe4abf.tar.gz
koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'chalk/ui/kis_tool_manager.cpp')
-rw-r--r--chalk/ui/kis_tool_manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/chalk/ui/kis_tool_manager.cpp b/chalk/ui/kis_tool_manager.cpp
index 04388058..3531370d 100644
--- a/chalk/ui/kis_tool_manager.cpp
+++ b/chalk/ui/kis_tool_manager.cpp
@@ -242,7 +242,7 @@ void KisToolManager::setToolForInputDevice(KisInputDevice oldDevice, KisInputDev
for (vKisTool::iterator it = oldTools.begin(); it != oldTools.end(); ++it) {
KisTool *tool = *it;
TDEAction *toolAction = tool->action();
- toolAction->disconnect(TQT_SIGNAL(activated()), tool, TQT_SLOT(activate()));
+ toolAction->disconnect(TQ_SIGNAL(activated()), tool, TQ_SLOT(activate()));
}
}
KisTool *oldTool = currentTool();
@@ -262,7 +262,7 @@ void KisToolManager::setToolForInputDevice(KisInputDevice oldDevice, KisInputDev
for (vKisTool::iterator it = tools.begin(); it != tools.end(); ++it) {
KisTool *tool = *it;
TDEAction *toolAction = tool->action();
- connect(toolAction, TQT_SIGNAL(activated()), tool, TQT_SLOT(activate()));
+ connect(toolAction, TQ_SIGNAL(activated()), tool, TQ_SLOT(activate()));
}
}