diff --git a/ChangeLog b/ChangeLog index c3d35bcb62..b9d55f5016 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Wed Jun 12 15:08:37 2002 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_get_style_by_paths): Allow + NULL for widget path or class path as documented. + (#83150, Sergey Kuzminov) + Wed Jun 12 15:02:30 2002 Owen Taylor * gtk/gtktextutil.c: Fix ZWJ => ZWN typo. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index c3d35bcb62..b9d55f5016 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Wed Jun 12 15:08:37 2002 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_get_style_by_paths): Allow + NULL for widget path or class path as documented. + (#83150, Sergey Kuzminov) + Wed Jun 12 15:02:30 2002 Owen Taylor * gtk/gtktextutil.c: Fix ZWJ => ZWN typo. diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index c3d35bcb62..b9d55f5016 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +Wed Jun 12 15:08:37 2002 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_get_style_by_paths): Allow + NULL for widget path or class path as documented. + (#83150, Sergey Kuzminov) + Wed Jun 12 15:02:30 2002 Owen Taylor * gtk/gtktextutil.c: Fix ZWJ => ZWN typo. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index c3d35bcb62..b9d55f5016 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Wed Jun 12 15:08:37 2002 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_get_style_by_paths): Allow + NULL for widget path or class path as documented. + (#83150, Sergey Kuzminov) + Wed Jun 12 15:02:30 2002 Owen Taylor * gtk/gtktextutil.c: Fix ZWJ => ZWN typo. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index c3d35bcb62..b9d55f5016 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Wed Jun 12 15:08:37 2002 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_get_style_by_paths): Allow + NULL for widget path or class path as documented. + (#83150, Sergey Kuzminov) + Wed Jun 12 15:02:30 2002 Owen Taylor * gtk/gtktextutil.c: Fix ZWJ => ZWN typo. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index c3d35bcb62..b9d55f5016 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Wed Jun 12 15:08:37 2002 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_get_style_by_paths): Allow + NULL for widget path or class path as documented. + (#83150, Sergey Kuzminov) + Wed Jun 12 15:02:30 2002 Owen Taylor * gtk/gtktextutil.c: Fix ZWJ => ZWN typo. 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;