summaryrefslogtreecommitdiffstats
path: root/src/widgets
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2009-02-26 02:52:45 +0000
committertweenk <tweenk@users.sourceforge.net>2009-02-26 02:52:45 +0000
commit014dfe3aedbc0909f354068d2966f630f512a0e5 (patch)
treefd03a7ab222577b6a447f33480e4691d660b7e1a /src/widgets
parentadd #include <gtk/gtk.h> to fix defect #333767 (diff)
downloadinkscape-014dfe3aedbc0909f354068d2966f630f512a0e5.tar.gz
inkscape-014dfe3aedbc0909f354068d2966f630f512a0e5.zip
Several icon name fixes
(bzr r7373)
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/desktop-widget.cpp5
-rw-r--r--src/widgets/toolbox.cpp2
2 files changed, 4 insertions, 3 deletions
diff --git a/src/widgets/desktop-widget.cpp b/src/widgets/desktop-widget.cpp
index 356a09418..6550ca0cd 100644
--- a/src/widgets/desktop-widget.cpp
+++ b/src/widgets/desktop-widget.cpp
@@ -51,6 +51,7 @@
#include "toolbox.h"
#include "ui/dialog/dialog-manager.h"
#include "ui/dialog/swatches.h"
+#include "ui/icon-names.h"
#include "ui/widget/dock.h"
#include "ui/widget/layer-selector.h"
#include "ui/widget/selected-style.h"
@@ -374,7 +375,7 @@ sp_desktop_widget_init (SPDesktopWidget *dtw)
dtw->sticky_zoom = sp_button_new_from_data ( Inkscape::ICON_SIZE_DECORATION,
SP_BUTTON_TYPE_TOGGLE,
NULL,
- "sticky_zoom",
+ INKSCAPE_ICON_ZOOM,
_("Zoom drawing if window size changes"),
dtw->tt);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (dtw->sticky_zoom), prefs->getBool("/options/stickyzoom/value"));
@@ -396,7 +397,7 @@ sp_desktop_widget_init (SPDesktopWidget *dtw)
dtw->cms_adjust = sp_button_new_from_data( Inkscape::ICON_SIZE_DECORATION,
SP_BUTTON_TYPE_TOGGLE,
NULL,
- "color_management",
+ INKSCAPE_ICON_COLOR_MANAGEMENT,
tip,
dtw->tt );
#if ENABLE_LCMS
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index 3049d53e7..690b434e4 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -4352,7 +4352,7 @@ static void sp_tweak_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainAction
InkToggleAction* act = ink_toggle_action_new( "TweakPressureAction",
_("Pressure"),
_("Use the pressure of the input device to alter the force of tweak action"),
- "use_pressure",
+ INKSCAPE_ICON_DRAW_USE_PRESSURE,
Inkscape::ICON_SIZE_DECORATION );
gtk_action_group_add_action( mainActions, GTK_ACTION( act ) );
g_signal_connect_after( G_OBJECT(act), "toggled", G_CALLBACK(sp_tweak_pressure_state_changed), NULL);