remove unusued ActionManager::get_action() variant
[ardour.git] / libs / gtkmm2ext / actions.cc
index 02e99f23e96737163eafd9de8b69221b00ca3956..1380d49ae8631ee94eb682e9c351e59d7583f9b1 100644 (file)
@@ -243,19 +243,6 @@ ActionManager::get_widget (const char * name)
        return ui_manager->get_widget (name);
 }
 
-RefPtr<Action>
-ActionManager::get_action (const char* path)
-{
-       GtkAction* _act;
-       RefPtr<Action> act;
-
-       if ((_act = gtk_ui_manager_get_action (ui_manager->gobj(), path)) != 0) {
-               return Glib::wrap (_act, true);
-       }
-
-       return act;
-}
-
 RefPtr<Action>
 ActionManager::get_action (const char* group_name, const char* action_name)
 {