summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_snapshots.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-09-14 16:51:02 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-09-14 16:51:02 +0000
commitda8eec7a8311295ee91308eca9fae2146385c512 (patch)
tree8353f003e048b3980bdf4e09f78a4c37d3ad6a59 /gtk2_ardour/editor_snapshots.cc
parentc1ee2c6943623e43181d56eed0de18b608fff86a (diff)
remove Glib::ustring from gtk2_ardour
git-svn-id: svn://localhost/ardour2/branches/3.0@7774 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_snapshots.cc')
-rw-r--r--gtk2_ardour/editor_snapshots.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/editor_snapshots.cc b/gtk2_ardour/editor_snapshots.cc
index 3c841774af..d8e0fd1644 100644
--- a/gtk2_ardour/editor_snapshots.cc
+++ b/gtk2_ardour/editor_snapshots.cc
@@ -68,7 +68,7 @@ EditorSnapshots::selection_changed ()
TreeModel::iterator i = _display.get_selection()->get_selected();
- Glib::ustring snap_name = (*i)[_columns.real_name];
+ std::string snap_name = (*i)[_columns.real_name];
if (snap_name.length() == 0) {
return;
@@ -111,7 +111,7 @@ EditorSnapshots::button_press (GdkEventButton* ev)
* @snapshot_name Name of the snapshot that the menu click was over.
*/
void
-EditorSnapshots::popup_context_menu (int button, int32_t time, Glib::ustring snapshot_name)
+EditorSnapshots::popup_context_menu (int button, int32_t time, std::string snapshot_name)
{
using namespace Menu_Helpers;
@@ -128,7 +128,7 @@ EditorSnapshots::popup_context_menu (int button, int32_t time, Glib::ustring sna
}
void
-EditorSnapshots::rename (Glib::ustring old_name)
+EditorSnapshots::rename (std::string old_name)
{
ArdourPrompter prompter(true);
@@ -150,7 +150,7 @@ EditorSnapshots::rename (Glib::ustring old_name)
void
-EditorSnapshots::remove (Glib::ustring name)
+EditorSnapshots::remove (std::string name)
{
vector<string> choices;