neo was told there was no spoon, i'm telling you there is no bsharp
authorPaul Davis <paul@linuxaudiosystems.com>
Tue, 10 Aug 2010 22:02:06 +0000 (22:02 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Tue, 10 Aug 2010 22:02:06 +0000 (22:02 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@7589 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/step_entry.cc
gtk2_ardour/step_entry.h

index 27a0ee4a3c905fdfaea0a7bd321788d60eae28e8..801055a786fb9bea05931db45b96ad66ff980188 100644 (file)
@@ -485,9 +485,8 @@ StepEntry::register_actions ()
        /* add named actions for the editor */
 
        myactions.register_action ("StepEditing", "insert-a", _("Insert Note A"), sigc::mem_fun (*this, &StepEntry::insert_a));
-       myactions.register_action ("StepEditing", "insert-bsharp", _("Insert Note A-sharp"), sigc::mem_fun (*this, &StepEntry::insert_asharp));
+       myactions.register_action ("StepEditing", "insert-asharp", _("Insert Note A-sharp"), sigc::mem_fun (*this, &StepEntry::insert_asharp));
        myactions.register_action ("StepEditing", "insert-b", _("Insert Note B"), sigc::mem_fun (*this, &StepEntry::insert_b));
-       myactions.register_action ("StepEditing", "insert-bsharp", _("Insert Note B-sharp"), sigc::mem_fun (*this, &StepEntry::insert_bsharp));
        myactions.register_action ("StepEditing", "insert-c", _("Insert Note C"), sigc::mem_fun (*this, &StepEntry::insert_c));
        myactions.register_action ("StepEditing", "insert-csharp", _("Insert Note C-sharp"), sigc::mem_fun (*this, &StepEntry::insert_csharp));
        myactions.register_action ("StepEditing", "insert-d", _("Insert Note D"), sigc::mem_fun (*this, &StepEntry::insert_d));
@@ -628,12 +627,6 @@ StepEntry::insert_b ()
         insert_note (11 + (current_octave() * 12));
 }
 
-void
-StepEntry::insert_bsharp ()
-{
-        insert_note (12 + (current_octave() * 12));
-}
-
 void
 StepEntry::note_length_change (GtkAction* act)
 {
index 3419a5b638127179eecbdd537dd4b34a0a779473..d9c54923041d6c33468e13327c82d942496c1449 100644 (file)
@@ -135,7 +135,6 @@ class StepEntry : public ArdourDialog
         void insert_a ();
         void insert_asharp ();
         void insert_b ();
-        void insert_bsharp ();
         void insert_c ();
         void insert_csharp ();
         void insert_d ();