summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2006-01-30 05:10:51 +0000
committergouldtj <gouldtj@users.sourceforge.net>2006-01-30 05:10:51 +0000
commit849f8412345d7bcdfa1d9888e6591023ccdf58ac (patch)
tree823f641c88a20322190203845e6be803bf2746ae /src
parentr10781@tres: ted | 2006-01-26 23:18:34 -0800 (diff)
downloadinkscape-849f8412345d7bcdfa1d9888e6591023ccdf58ac.tar.gz
inkscape-849f8412345d7bcdfa1d9888e6591023ccdf58ac.zip
r10814@tres: ted | 2006-01-29 14:02:54 -0800
Adding in support for getting the name of the verb. (bzr r49)
Diffstat (limited to 'src')
-rw-r--r--src/verbs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/verbs.h b/src/verbs.h
index 890f3ffec..acc6d7d17 100644
--- a/src/verbs.h
+++ b/src/verbs.h
@@ -291,6 +291,8 @@ public:
unsigned int get_code (void) { return _code; }
/** \brief Accessor to get the internal variable. */
gchar const * get_id (void) { return _id; }
+ /** \brief Accessor to get the internal variable. */
+ gchar const * get_name (void) { return _name; }
protected:
SPAction * make_action_helper (Inkscape::UI::View::View * view, SPActionEventVector * vector, void * in_pntr = NULL);