summaryrefslogtreecommitdiffstats
path: root/chalk/ui/kis_tool_manager.cc
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-02-01 15:02:43 -0600
committerTimothy Pearson <[email protected]>2013-02-01 15:02:43 -0600
commitaea627236e4de24599c3e30617cf264c3c1b7d40 (patch)
tree467e13ca5a7eb0ab292259289ecc3572f53c5eae /chalk/ui/kis_tool_manager.cc
parent786304c6211f35ddc4cdd54b7aa7985fef4a2e70 (diff)
downloadkoffice-aea627236e4de24599c3e30617cf264c3c1b7d40.tar.gz
koffice-aea627236e4de24599c3e30617cf264c3c1b7d40.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'chalk/ui/kis_tool_manager.cc')
-rw-r--r--chalk/ui/kis_tool_manager.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chalk/ui/kis_tool_manager.cc b/chalk/ui/kis_tool_manager.cc
index 458b54e2..04388058 100644
--- a/chalk/ui/kis_tool_manager.cc
+++ b/chalk/ui/kis_tool_manager.cc
@@ -50,7 +50,7 @@ KisToolManager::~KisToolManager()
delete m_dummyTool;
}
-void KisToolManager::setUp(KoToolBox * toolbox, KoPaletteManager * paletteManager, KActionCollection * actionCollection)
+void KisToolManager::setUp(KoToolBox * toolbox, KoPaletteManager * paletteManager, TDEActionCollection * actionCollection)
{
if (setup) {
resetToolBox( toolbox );
@@ -241,7 +241,7 @@ void KisToolManager::setToolForInputDevice(KisInputDevice oldDevice, KisInputDev
vKisTool& oldTools = (*vit).second;
for (vKisTool::iterator it = oldTools.begin(); it != oldTools.end(); ++it) {
KisTool *tool = *it;
- KAction *toolAction = tool->action();
+ TDEAction *toolAction = tool->action();
toolAction->disconnect(TQT_SIGNAL(activated()), tool, TQT_SLOT(activate()));
}
}
@@ -261,7 +261,7 @@ void KisToolManager::setToolForInputDevice(KisInputDevice oldDevice, KisInputDev
for (vKisTool::iterator it = tools.begin(); it != tools.end(); ++it) {
KisTool *tool = *it;
- KAction *toolAction = tool->action();
+ TDEAction *toolAction = tool->action();
connect(toolAction, TQT_SIGNAL(activated()), tool, TQT_SLOT(activate()));
}
}