diff options
author | Aaron Hamilton <aaron@correspondwith.me> | 2013-11-28 07:26:00 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-12-01 17:03:48 -0500 |
commit | 142d3f1d596297e9ad78a304968ff1f0ef66ec69 (patch) | |
tree | e56a1a8e4a8c8de0620d938cedf2a75a6d6b9dfe | |
parent | 56719c63633d2a9a49f4ba038c21e23d13bf39e4 (diff) | |
download | gtk+-142d3f1d596297e9ad78a304968ff1f0ef66ec69.tar.gz |
Correct the deprecation annotation for gtk_widget_modify_bg
It was pointing to a nonexisting function.
https://bugzilla.gnome.org/show_bug.cgi?id=719469
-rw-r--r-- | gtk/deprecated/gtkstyle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/deprecated/gtkstyle.h b/gtk/deprecated/gtkstyle.h index ccfe4a23ba..755fac0eb5 100644 --- a/gtk/deprecated/gtkstyle.h +++ b/gtk/deprecated/gtkstyle.h @@ -679,7 +679,7 @@ GDK_DEPRECATED_IN_3_0_FOR(gtk_widget_override_color) void gtk_widget_modify_fg (GtkWidget *widget, GtkStateType state, const GdkColor *color); -GDK_DEPRECATED_IN_3_0_FOR(gtk_widget_override_background) +GDK_DEPRECATED_IN_3_0_FOR(gtk_widget_override_background_color) void gtk_widget_modify_bg (GtkWidget *widget, GtkStateType state, const GdkColor *color); |