From 642a967bcec325ac01f01a22c63c24bf670e2ee3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 19 Jul 2013 00:15:36 +0100 Subject: [PATCH] Remove some debugging. --- src/wx/timeline.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index c50b89f6e..6eba7f793 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -45,7 +45,6 @@ public: void paint (wxGraphicsContext* g) { - cout << "base paint " << this << "\n"; _last_paint_bbox = bbox (); do_paint (g); } @@ -146,8 +145,6 @@ private: gc->SetBrush (*wxTheBrushList->FindOrCreateBrush (colour(), wxBRUSHSTYLE_SOLID)); } - cout << "paint " << static_cast (this) << " " << _content.get() << " @ " << time_x (start) << "\n"; - wxGraphicsPath path = gc->CreatePath (); path.MoveToPoint (time_x (start), y_pos (_track) + 4); path.AddLineToPoint (time_x (start + len), y_pos (_track) + 4); @@ -357,7 +354,6 @@ Timeline::paint (wxPaintEvent &) gc->SetFont (gc->CreateFont (*wxNORMAL_FONT)); - cout << "painting " << _views.size() << "\n"; for (list >::iterator i = _views.begin(); i != _views.end(); ++i) { (*i)->paint (gc); } @@ -373,7 +369,6 @@ Timeline::playlist_changed () return; } - cout << "clearing views.\n"; _views.clear (); Playlist::ContentList content = fl->playlist()->content_with_loop (); -- 2.30.2