summaryrefslogtreecommitdiff
path: root/gtk2_ardour/marker_selection.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-12 18:13:31 +0200
committerRobin Gareus <robin@gareus.org>2016-04-12 18:13:31 +0200
commit8d112f018c4488941eeed74c97334b4e10b34b8a (patch)
tree05cac783eb5be3100fe0d00169869d42cfb4ad6d /gtk2_ardour/marker_selection.h
parent2b4dc843add9c62fac1c88a1538fc449617616d0 (diff)
turn MarkerSelection into a class (bindings)
Diffstat (limited to 'gtk2_ardour/marker_selection.h')
-rw-r--r--gtk2_ardour/marker_selection.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk2_ardour/marker_selection.h b/gtk2_ardour/marker_selection.h
index 6d4749f039..1b322d0885 100644
--- a/gtk2_ardour/marker_selection.h
+++ b/gtk2_ardour/marker_selection.h
@@ -24,9 +24,10 @@
#include "marker.h"
-struct MarkerSelection : public std::list<ArdourMarker*>
+class MarkerSelection : public std::list<ArdourMarker*>
{
- void range (ARDOUR::framepos_t& start, ARDOUR::framepos_t& end);
+ public:
+ void range (ARDOUR::framepos_t& start, ARDOUR::framepos_t& end);
};
#endif /* __ardour_gtk_marker_selection_h__ */