diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2011-10-02 09:58:10 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2011-10-02 09:58:10 +0200 |
commit | f474c3c923fe5bb27c1ee11e2c6dd57e41889f27 (patch) | |
tree | 93e2a3e2624bb2e4d238d22124956cd066643b03 /dgedit/canvastool.cc | |
parent | 83807cf93ef362098d6fea6030646653cc62e37f (diff) |
Made conenctions for CanvasTool work (again...).
Diffstat (limited to 'dgedit/canvastool.cc')
-rw-r--r-- | dgedit/canvastool.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dgedit/canvastool.cc b/dgedit/canvastool.cc index 196be0b..9d23d97 100644 --- a/dgedit/canvastool.cc +++ b/dgedit/canvastool.cc @@ -26,6 +26,8 @@ */ #include "canvastool.h" +#include <stdio.h> + bool CanvasTool::mouseMoveEvent(QMouseEvent *) { return false; @@ -55,6 +57,7 @@ void CanvasTool::keyReleaseEvent(QKeyEvent *) void CanvasTool::setActive(bool active) { + printf("setActive(%d)\n", active); _active = active; emit activateChanged(active); } |