summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-19 00:15:36 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-19 00:15:36 +0100
commit642a967bcec325ac01f01a22c63c24bf670e2ee3 (patch)
tree5de66c3c21e250e4c6d62e03fe978e4cec8c2695 /src
parente5da5518951e91f7bfb80718c9cf546e3ece059c (diff)
Remove some debugging.
Diffstat (limited to 'src')
-rw-r--r--src/wx/timeline.cc5
1 files changed, 0 insertions, 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<View*> (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<shared_ptr<View> >::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 ();