summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2012-04-08 15:16:07 +0000
committerJohan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl>2012-04-08 15:16:07 +0000
commit6f5b62b328655e37b3ca90bba51549077bc2b8d2 (patch)
treea5966509f8345c969e7c721ae0bc78a08e858539
parentStop using custom GtkObject flags (diff)
downloadinkscape-6f5b62b328655e37b3ca90bba51549077bc2b8d2.tar.gz
inkscape-6f5b62b328655e37b3ca90bba51549077bc2b8d2.zip
small GSEAL fix
(bzr r11182)
-rw-r--r--src/widgets/paint-selector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/paint-selector.cpp b/src/widgets/paint-selector.cpp
index d67160483..a750ffab6 100644
--- a/src/widgets/paint-selector.cpp
+++ b/src/widgets/paint-selector.cpp
@@ -955,7 +955,7 @@ void SPPaintSelector::updatePatternList( SPPattern *pattern )
GtkMenu *m = GTK_MENU(gtk_option_menu_get_menu(GTK_OPTION_MENU(mnu)));
- GList *kids = GTK_MENU_SHELL(m)->children;
+ GList *kids = gtk_container_get_children(GTK_CONTAINER(m));
int patpos = 0;
int i = 0;