diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/verbs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/verbs.h b/src/verbs.h index e79fa6d43..2b4c952e9 100644 --- a/src/verbs.h +++ b/src/verbs.h @@ -304,6 +304,11 @@ public: /** \brief Accessor to get the internal variable. */ gchar const * get_name (void) { return _name; } + /** \brief Set the name after initialization. */ + gchar const * set_name (gchar const * name) { _name = name; return _name; } + /** \brief Set the tooltip after initialization. */ + gchar const * set_tip (gchar const * tip) { _tip = tip; return _tip; } + protected: SPAction * make_action_helper (Inkscape::UI::View::View * view, SPActionEventVector * vector, void * in_pntr = NULL); virtual SPAction * make_action (Inkscape::UI::View::View * view); |
