diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-06-12 19:08:32 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-06-12 19:08:32 +0000 |
commit | 6f876a292f0095bec5324189f93f951039dd12c8 (patch) | |
tree | f88d4aa227720a734cad88ec3686614a3faf74bd /gtk/gtkrc.c | |
parent | 70c01bbe859829f84e2a7f7ab9c3c03f59b4447b (diff) | |
download | gtk+-6f876a292f0095bec5324189f93f951039dd12c8.tar.gz |
Allow NULL for widget path or class path as documented. (#83150, Sergey
Wed Jun 12 15:08:37 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c (gtk_rc_get_style_by_paths): Allow
NULL for widget path or class path as documented.
(#83150, Sergey Kuzminov
Diffstat (limited to 'gtk/gtkrc.c')
-rw-r--r-- | gtk/gtkrc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk/gtkrc.c b/gtk/gtkrc.c index 70c85e94bb..6cf9f37b66 100644 --- a/gtk/gtkrc.c +++ b/gtk/gtkrc.c @@ -1614,7 +1614,9 @@ gtk_rc_get_style (GtkWidget *widget) * gtk_rc_get_style_by_paths: * @settings: a #GtkSettings object * @widget_path: the widget path to use when looking up the style, or %NULL + * if no matching against the widget path should be done * @class_path: the class path to use when looking up the style, or %NULL + * if no matching against the class path should be done. * @type: a type that will be used along with parent types of this type * when matching against class styles, or #G_TYPE_NONE * @@ -1655,7 +1657,7 @@ gtk_rc_get_style_by_paths (GtkSettings *settings, context = gtk_rc_context_get (settings); - if (context->rc_sets_widget) + if (widget_path && context->rc_sets_widget) { gchar *path_reversed; guint path_length; @@ -1668,7 +1670,7 @@ gtk_rc_get_style_by_paths (GtkSettings *settings, g_free (path_reversed); } - if (context->rc_sets_widget_class) + if (class_path && context->rc_sets_widget_class) { gchar *path_reversed; guint path_length; |