summaryrefslogtreecommitdiffstats
path: root/kivio/kiviopart/addstenciltool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kivio/kiviopart/addstenciltool.cpp')
-rw-r--r--kivio/kiviopart/addstenciltool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kivio/kiviopart/addstenciltool.cpp b/kivio/kiviopart/addstenciltool.cpp
index 7e7a0becb..ddbe38c55 100644
--- a/kivio/kiviopart/addstenciltool.cpp
+++ b/kivio/kiviopart/addstenciltool.cpp
@@ -53,7 +53,7 @@ bool AddStencilTool::processEvent(TQEvent* e)
{
TQMouseEvent* me = TQT_TQMOUSEEVENT(e);
- if(me->button() == Qt::LeftButton) {
+ if(me->button() == TQt::LeftButton) {
m_leftMouseButtonPressed = true;
createStencil(me->pos());
return true;
@@ -65,7 +65,7 @@ bool AddStencilTool::processEvent(TQEvent* e)
{
TQMouseEvent* me = TQT_TQMOUSEEVENT(e);
- if(m_leftMouseButtonPressed && (me->button() == Qt::LeftButton)) {
+ if(m_leftMouseButtonPressed && (me->button() == TQt::LeftButton)) {
m_leftMouseButtonPressed = false;
endOperation(me->pos());
return true;