diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2016-12-27 01:27:19 +0000 |
|---|---|---|
| committer | Alexander Valavanis <valavanisalex@gmail.com> | 2016-12-27 01:27:19 +0000 |
| commit | 9144e83f27ca6ad76ec6d72a8426ebd76c63a6a5 (patch) | |
| tree | d7d98ccdc14105118dd951135a8836ef23ef017e /src/ui/dialog/transformation.cpp | |
| parent | Fix header inclusion ordering (diff) | |
| download | inkscape-9144e83f27ca6ad76ec6d72a8426ebd76c63a6a5.tar.gz inkscape-9144e83f27ca6ad76ec6d72a8426ebd76c63a6a5.zip | |
Rm some deprecated Gtk::Stock usage
(bzr r15366)
Diffstat (limited to 'src/ui/dialog/transformation.cpp')
| -rw-r--r-- | src/ui/dialog/transformation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/transformation.cpp b/src/ui/dialog/transformation.cpp index 5ec47b0dc..475c3a9c6 100644 --- a/src/ui/dialog/transformation.cpp +++ b/src/ui/dialog/transformation.cpp @@ -134,14 +134,14 @@ Transformation::Transformation() updateSelection(PAGE_MOVE, _getSelection()); - resetButton = addResponseButton(Gtk::Stock::CLEAR, 0); + resetButton = addResponseButton(_("_Clear"), 0); if (resetButton) { resetButton->set_tooltip_text(_("Reset the values on the current tab to defaults")); resetButton->set_sensitive(true); resetButton->signal_clicked().connect(sigc::mem_fun(*this, &Transformation::onClear)); } - applyButton = addResponseButton(Gtk::Stock::APPLY, Gtk::RESPONSE_APPLY); + applyButton = addResponseButton(_("_Apply"), Gtk::RESPONSE_APPLY); if (applyButton) { applyButton->set_tooltip_text(_("Apply transformation to selection")); applyButton->set_sensitive(false); |
