add some more hand-holding language to the startup assistant
[ardour.git] / gtk2_ardour / editor_keys.cc
index 0d46665782f8bf74d4861dc3eda786c0e0e39742..2da3122d48d8c324acc4b767477d97543bf20aff 100644 (file)
@@ -43,7 +43,7 @@ Editor::keyboard_selection_finish (bool add)
 {
        if (_session && have_pending_keyboard_selection) {
 
-               nframes64_t end;
+               framepos_t end;
                bool ignored;
 
                if (_session->transport_rolling()) {
@@ -73,7 +73,7 @@ Editor::keyboard_selection_begin ()
                        have_pending_keyboard_selection = true;
                } else {
                        bool ignored;
-                       nframes64_t where; // XXX fix me
+                       framepos_t where; // XXX fix me
 
                        if (mouse_frame (where, ignored)) {
                                pending_keyboard_selection_start = where;
@@ -90,17 +90,3 @@ Editor::keyboard_paste ()
        ensure_entered_track_selected (true);
        paste (1);
 }
-
-void
-Editor::keyboard_insert_region_list_selection ()
-{
-       insert_region_list_selection (1);
-}
-
-int
-Editor::get_prefix (float& /*val*/, bool& was_floating)
-{
-       was_floating = false;
-       return 1;
-}
-