summaryrefslogtreecommitdiffstats
path: root/src/widgets/toolbox.cpp
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2016-12-27 14:38:57 +0000
committerAlexander Valavanis <valavanisalex@gmail.com>2016-12-27 14:38:57 +0000
commitd14c66ec084bb5a53e1a47942cca89f189da8caf (patch)
tree3f38a37d0d9220e684366f2c9a8f233bb85991f7 /src/widgets/toolbox.cpp
parentRm some deprecated Gtk::Stock usage (diff)
downloadinkscape-d14c66ec084bb5a53e1a47942cca89f189da8caf.tar.gz
inkscape-d14c66ec084bb5a53e1a47942cca89f189da8caf.zip
Rm more deprecated Gtk::Stock
(bzr r15367)
Diffstat (limited to 'src/widgets/toolbox.cpp')
-rw-r--r--src/widgets/toolbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index a3db3c33d..b72a8d5dc 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -661,7 +661,7 @@ Glib::RefPtr<VerbAction> VerbAction::create(Inkscape::Verb* verb, Inkscape::Verb
}
VerbAction::VerbAction(Inkscape::Verb* verb, Inkscape::Verb* verb2, Inkscape::UI::View::View *view) :
- Gtk::Action(Glib::ustring(verb->get_id()), Gtk::StockID(verb->get_image()), Glib::ustring(g_dpgettext2(NULL, "ContextVerb", verb->get_name())), Glib::ustring(_(verb->get_tip()))),
+ Gtk::Action(Glib::ustring(verb->get_id()), verb->get_image(), Glib::ustring(g_dpgettext2(NULL, "ContextVerb", verb->get_name())), Glib::ustring(_(verb->get_tip()))),
verb(verb),
verb2(verb2),
view(view),