From 4d1d5eb0729ced5bdca49046bff1465bc780fc9c Mon Sep 17 00:00:00 2001 From: Hombre Date: Thu, 24 Mar 2011 01:51:28 +0100 Subject: [PATCH] Removing some annoying debug outputs --- rtgui/myflatcurve.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/rtgui/myflatcurve.cc b/rtgui/myflatcurve.cc index 24d49bf33..015a79266 100644 --- a/rtgui/myflatcurve.cc +++ b/rtgui/myflatcurve.cc @@ -490,7 +490,6 @@ bool MyFlatCurve::handleEvents (GdkEvent* event) { switch (event->type) { case Gdk::CONFIGURE: { GdkEventConfigure* cEvent = (GdkEventConfigure*)event; - printf("MyFlatCurve::handleEvents - CONFIGURE (%d, %d, %d, %d)\n", cEvent->x, cEvent->y, cEvent->width, cEvent->height); if (!sized) { int size = get_allocation().get_width(); set_size_request(size, size); @@ -506,7 +505,6 @@ bool MyFlatCurve::handleEvents (GdkEvent* event) { set_size_request(GRAPH_SIZE + RADIUS + 1, GRAPH_SIZE + RADIUS + 1); } sized = false; - printf("MyFlatCurve::handleEvents - EXPOSE\n"); if (!pixmap) { pixmap = Gdk::Pixmap::create (get_window(), get_allocation().get_width(), get_allocation().get_height()); interpolate ();