followup to the previous tempo-dragging commit: use argument to Drag::aborted() to...
[ardour.git] / gtk2_ardour / editor_snapshots.cc
index e7bd89f6043235eecfbbc2651cd4bb814e8dc325..d9c1489e822edb29a27869c05fc7ba9fe17e08d9 100644 (file)
@@ -40,7 +40,6 @@ EditorSnapshots::EditorSnapshots (Editor* e)
        _model = ListStore::create (_columns);
        _display.set_model (_model);
        _display.append_column (X_("snapshot"), _columns.visible_name);
-       _display.set_name ("SnapshotDisplay");
        _display.set_size_request (75, -1);
        _display.set_headers_visible (false);
        _display.set_reorderable (false);
@@ -54,7 +53,7 @@ EditorSnapshots::EditorSnapshots (Editor* e)
 void
 EditorSnapshots::set_session (Session* s)
 {
-       EditorComponent::set_session (s);
+       SessionHandlePtr::set_session (s);
 
        redisplay ();
 }
@@ -68,7 +67,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;
@@ -108,10 +107,10 @@ EditorSnapshots::button_press (GdkEventButton* ev)
 /** Pop up the snapshot display context menu.
  * @param button Button used to open the menu.
  * @param time Menu open time.
- * @snapshot_name Name of the snapshot that the menu click was over.
+ * @param 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 +127,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 +149,7 @@ EditorSnapshots::rename (Glib::ustring old_name)
 
 
 void
-EditorSnapshots::remove (Glib::ustring name)
+EditorSnapshots::remove (std::string name)
 {
        vector<string> choices;