diff options
Diffstat (limited to 'src/wx/timeline.cc')
| -rw-r--r-- | src/wx/timeline.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index 7f3c1996b..8def5550a 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -38,7 +38,7 @@ class View { public: View (Timeline& t) - : _timeline (t) + : _timeline (t) { } @@ -148,11 +148,11 @@ private: } wxGraphicsPath path = gc->CreatePath (); - path.MoveToPoint (time_x (start), y_pos (_track) + 4); + path.MoveToPoint (time_x (start), y_pos (_track) + 4); path.AddLineToPoint (time_x (start + len), y_pos (_track) + 4); path.AddLineToPoint (time_x (start + len), y_pos (_track + 1) - 4); - path.AddLineToPoint (time_x (start), y_pos (_track + 1) - 4); - path.AddLineToPoint (time_x (start), y_pos (_track) + 4); + path.AddLineToPoint (time_x (start), y_pos (_track + 1) - 4); + path.AddLineToPoint (time_x (start), y_pos (_track) + 4); gc->StrokePath (path); gc->FillPath (path); @@ -230,7 +230,7 @@ class TimeAxisView : public View { public: TimeAxisView (Timeline& tl, int y) - : View (tl) + : View (tl) , _y (y) {} |
