summaryrefslogtreecommitdiff
path: root/src/wx/timeline.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-17 01:10:58 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-17 01:10:58 +0100
commit98ff4e6e7789d7a5226eacb5bc16dbaa073510ad (patch)
tree0ab6585a545cb220249d75744660dd08c36af57c /src/wx/timeline.cc
parent77fd65d0dd95506b5b51802ab58b6bd5eae60dc7 (diff)
tabs -> spaces.
Diffstat (limited to 'src/wx/timeline.cc')
-rw-r--r--src/wx/timeline.cc10
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)
{}