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/gtkbox.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/gtkbox.c')
-rw-r--r-- | gtk/gtkbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkbox.c b/gtk/gtkbox.c index 9276a71e6c..cc0cb8a20c 100644 --- a/gtk/gtkbox.c +++ b/gtk/gtkbox.c @@ -899,7 +899,7 @@ gtk_box_get_path_for_child (GtkContainer *container, box = GTK_BOX (container); private = box->priv; - 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)) { |