summaryrefslogtreecommitdiffstats
path: root/src/ui
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2009-04-25 18:20:36 +0000
committertweenk <tweenk@users.sourceforge.net>2009-04-25 18:20:36 +0000
commit7e7f9f007a03af28b6a098eb1ad1a5a44d65cbf6 (patch)
treee048770b2358135f93372cfc74731c92d10e8e67 /src/ui
parentOptionaly snap to invisible grid lines too (when zoomed out). See the grids t... (diff)
downloadinkscape-7e7f9f007a03af28b6a098eb1ad1a5a44d65cbf6.tar.gz
inkscape-7e7f9f007a03af28b6a098eb1ad1a5a44d65cbf6.zip
Fix compile on Windows (the last paramteter is not defaulted in older
versions of gtkmm) (bzr r7774)
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/widget/dock-item.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/widget/dock-item.cpp b/src/ui/widget/dock-item.cpp
index f718c669c..b48d43076 100644
--- a/src/ui/widget/dock-item.cpp
+++ b/src/ui/widget/dock-item.cpp
@@ -44,7 +44,7 @@ DockItem::DockItem(Dock& dock, const Glib::ustring& name, const Glib::ustring& l
if (!icon_name.empty()) {
int width = 0, height = 0;
Gtk::IconSize::lookup(Gtk::ICON_SIZE_MENU, width, height);
- _icon_pixbuf = Gtk::IconTheme::get_default()->load_icon(icon_name, width);
+ _icon_pixbuf = Gtk::IconTheme::get_default()->load_icon(icon_name, width, (Gtk::IconLookupFlags) 0);
_gdl_dock_item =
gdl_dock_item_new_with_pixbuf_icon(name.c_str(), long_name.c_str(),
_icon_pixbuf->gobj(), gdl_dock_behavior);