From: Carl Hetherington Date: Thu, 18 Jul 2013 23:15:36 +0000 (+0100) Subject: Remove some debugging. X-Git-Tag: v2.0.48~1337^2~197^2~4 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=642a967bcec325ac01f01a22c63c24bf670e2ee3;p=dcpomatic.git Remove some debugging. --- 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 ();