summaryrefslogtreecommitdiff
path: root/gtk2_ardour/marker.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-09-17 18:20:37 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-09-17 18:20:37 +0000
commitede4ecbb00ecc866c502454c81e711baea780ccd (patch)
treed4a05e59cc96651ddf0eeab929f58fb7a7019fb0 /gtk2_ardour/marker.h
parent10bdce85a0e7381d1b5db38e3640600c6fd3ec79 (diff)
megaopus patch #2 for today: remove nframes64_t and sframes_t from source
git-svn-id: svn://localhost/ardour2/branches/3.0@7792 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/marker.h')
-rw-r--r--gtk2_ardour/marker.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/marker.h b/gtk2_ardour/marker.h
index e9ff0501ed..623e624f9d 100644
--- a/gtk2_ardour/marker.h
+++ b/gtk2_ardour/marker.h
@@ -68,11 +68,11 @@ class Marker : public sigc::trackable
void hide_line ();
void set_line_vpos (double y_origin, double height);
- void set_position (nframes64_t);
+ void set_position (framepos_t);
void set_name (const std::string&);
void set_color_rgba (uint32_t rgba);
- nframes64_t position() const { return frame_position; }
+ framepos_t position() const { return frame_position; }
ArdourCanvas::Group * get_parent() { return _parent; }
void reparent (ArdourCanvas::Group & parent);
@@ -96,7 +96,7 @@ class Marker : public sigc::trackable
ArdourCanvas::Points *line_points;
double unit_position;
- nframes64_t frame_position;
+ framepos_t frame_position;
unsigned char shift; /* should be double, but its always small and integral */
Type _type;
int name_height;