a couple of extra tooltips for editor preferences
[ardour.git] / gtk2_ardour / editor_keys.cc
index 0d46665782f8bf74d4861dc3eda786c0e0e39742..93eba4b79f02c24b714b52de0212bd4247acba90 100644 (file)
 #include <cmath>
 #include <string>
 
+#include <gtkmm/treeview.h>
+
 #include "pbd/error.h"
 
 #include "ardour/session.h"
-#include "ardour/region.h"
-#include <gtkmm/treeview.h>
 
 #include "ardour_ui.h"
 #include "editor.h"
-#include "time_axis_view.h"
 #include "region_view.h"
 #include "selection.h"
+#include "time_axis_view.h"
 
 #include "i18n.h"
 
@@ -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;
@@ -87,20 +87,5 @@ Editor::keyboard_selection_begin ()
 void
 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;
-}
-