summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_timespan.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/export_timespan.h')
-rw-r--r--libs/ardour/ardour/export_timespan.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/libs/ardour/ardour/export_timespan.h b/libs/ardour/ardour/export_timespan.h
index 9053ace0f9..592f36b1a9 100644
--- a/libs/ardour/ardour/export_timespan.h
+++ b/libs/ardour/ardour/export_timespan.h
@@ -23,8 +23,7 @@
#include <map>
#include <list>
-
-#include <glibmm/ustring.h>
+#include <string>
#include "ardour/export_status.h"
#include "ardour/export_channel.h"
@@ -48,11 +47,11 @@ class ExportTimespan
public:
~ExportTimespan ();
- Glib::ustring name () const { return _name; }
- void set_name (Glib::ustring name) { _name = name; }
+ std::string name () const { return _name; }
+ void set_name (std::string name) { _name = name; }
- Glib::ustring range_id () const { return _range_id; }
- void set_range_id (Glib::ustring range_id) { _range_id = range_id; }
+ std::string range_id () const { return _range_id; }
+ void set_range_id (std::string range_id) { _range_id = range_id; }
void set_range (nframes_t start, nframes_t end);
nframes_t get_length () const { return end_frame - start_frame; }
@@ -68,8 +67,8 @@ class ExportTimespan
nframes_t position;
nframes_t frame_rate;
- Glib::ustring _name;
- Glib::ustring _range_id;
+ std::string _name;
+ std::string _range_id;
};