diff options
author | Benjamin Otte <otte@redhat.com> | 2012-04-07 14:15:35 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-04-17 08:59:21 +0200 |
commit | 33f111a47c47f343ce549ea66bc8608f9c75ab7d (patch) | |
tree | 765c985a1f9aed11b463b72e88278914b5698903 /gtk/gtkcombobox.c | |
parent | 6ac754cdd1b5a273b0c0930866211c9b4bc450f4 (diff) | |
download | gtk+-33f111a47c47f343ce549ea66bc8608f9c75ab7d.tar.gz |
widget: Don't cache widget paths all the time
Add an internal API that allows GtkStyleContext to create a widget path
for the widget and with that bypassing gtk_widget_get_path() and that
function caching the path.
Diffstat (limited to 'gtk/gtkcombobox.c')
-rw-r--r-- | gtk/gtkcombobox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index 0272924b47..b83412e5e4 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -1415,7 +1415,7 @@ gtk_combo_box_get_path_for_child (GtkContainer *container, GtkWidgetPath *sibling_path; int pos; - path = gtk_widget_path_copy (gtk_widget_get_path (GTK_WIDGET (container))); + path = _gtk_widget_create_path (GTK_WIDGET (container)); if (gtk_widget_get_visible (child)) { |