diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-03-18 20:41:53 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-03-18 20:41:53 +0100 |
commit | b6d2ddc0770f29152cabf3de4020daa51d987c1f (patch) | |
tree | 66f7b49c8d5af2e3485c2db77782ab1835d0ccc0 | |
parent | 57f4d38841c40cad3c206abdd16eebaed753aa1c (diff) |
Remove debug output.
-rw-r--r-- | src/canvas.cc | 1 | ||||
-rw-r--r-- | src/canvastool.cc | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/canvas.cc b/src/canvas.cc index a00a39c..f2956fc 100644 --- a/src/canvas.cc +++ b/src/canvas.cc @@ -102,7 +102,6 @@ void Canvas::load(QString file) size = sf_info.frames; - printf("Size: %u\n", (unsigned int)sf_info.frames); data = new float[size]; sf_read_float(fh, data, size); diff --git a/src/canvastool.cc b/src/canvastool.cc index a9aba12..a00a5a2 100644 --- a/src/canvastool.cc +++ b/src/canvastool.cc @@ -57,7 +57,6 @@ void CanvasTool::keyReleaseEvent(QKeyEvent*) void CanvasTool::setActive(bool active) { - printf("setActive(%d)\n", active); _active = active; emit activateChanged(active); } |