summaryrefslogtreecommitdiffstats
path: root/krita/plugins/tools/tool_curves/kis_tool_example.cc
diff options
context:
space:
mode:
Diffstat (limited to 'krita/plugins/tools/tool_curves/kis_tool_example.cc')
-rw-r--r--krita/plugins/tools/tool_curves/kis_tool_example.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/krita/plugins/tools/tool_curves/kis_tool_example.cc b/krita/plugins/tools/tool_curves/kis_tool_example.cc
index 9fcc5d012..9458d966d 100644
--- a/krita/plugins/tools/tool_curves/kis_tool_example.cc
+++ b/krita/plugins/tools/tool_curves/kis_tool_example.cc
@@ -19,9 +19,9 @@
*/
-#include <qpainter.h>
-#include <qlayout.h>
-#include <qrect.h>
+#include <tqpainter.h>
+#include <tqlayout.h>
+#include <tqrect.h>
#include <kaction.h>
#include <kdebug.h>
@@ -88,13 +88,13 @@ void KisToolExample::setup(KActionCollection *collection)
m_action = static_cast<KRadioAction *>(collection->action(name()));
if (m_action == 0) {
- KShortcut shortcut(Qt::Key_Plus);
- shortcut.append(KShortcut(Qt::Key_F9));
+ KShortcut shortcut(TQt::Key_Plus);
+ shortcut.append(KShortcut(TQt::Key_F9));
m_action = new KRadioAction(i18n("&Example"),
"tool_example",
shortcut,
this,
- SLOT(activate()),
+ TQT_SLOT(activate()),
collection,
name());
Q_CHECK_PTR(m_action);