summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/actions.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-04-17 16:07:11 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-04-17 16:07:11 +0000
commit02a1879450e5cbee96890097bac79d13d5e5270a (patch)
tree791b0c50171918890199a2bf82205f820b31d6d0 /libs/gtkmm2ext/actions.cc
parent4cca76853396f5c4090c3be547b0df4b5f0d02d0 (diff)
add back semantically-different version of previously removed ::get_action() function
git-svn-id: svn://localhost/ardour2/branches/3.0@11995 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/gtkmm2ext/actions.cc')
-rw-r--r--libs/gtkmm2ext/actions.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/libs/gtkmm2ext/actions.cc b/libs/gtkmm2ext/actions.cc
index 1380d49ae8..774991038e 100644
--- a/libs/gtkmm2ext/actions.cc
+++ b/libs/gtkmm2ext/actions.cc
@@ -244,6 +244,20 @@ ActionManager::get_widget (const char * name)
}
RefPtr<Action>
+ActionManager::get_action (const char* path)
+{
+ char copy[strlen(path)+1];
+ strcpy (copy, path);
+ char *slash = strchr (copy, '/');
+ if (!slash) {
+ return RefPtr<Action> ();
+ }
+ *slash = '\0';
+ return get_action (copy, ++slash);
+
+}
+
+RefPtr<Action>
ActionManager::get_action (const char* group_name, const char* action_name)
{
/* the C++ API for functions used here appears to be broken in