diff options
author | Benjamin Otte <otte@redhat.com> | 2012-11-25 02:28:59 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-11-25 02:45:10 +0100 |
commit | 42dc0ea0fd423f3794d1f77bb9bb84d5bc9d3c0e (patch) | |
tree | 90c183370b1dca8f1b54222593bf005dd88a7dff /gtk/gtkstylecontextprivate.h | |
parent | 08ac1504d2c99d8bfd8ba3fb384f09263dcc66e5 (diff) | |
download | gtk+-42dc0ea0fd423f3794d1f77bb9bb84d5bc9d3c0e.tar.gz |
styleprovider: Change function prototype
Make _gtk_style_provider_private_get_color() return a GtkCssValue (a
GtkCssColorValue to be exact) instead of GtkSymbolicColor.
With this, the symbolic color usage inside GTK is minimized.
Diffstat (limited to 'gtk/gtkstylecontextprivate.h')
-rw-r--r-- | gtk/gtkstylecontextprivate.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk/gtkstylecontextprivate.h b/gtk/gtkstylecontextprivate.h index b48d1daf08..0fd3f6bfe7 100644 --- a/gtk/gtkstylecontextprivate.h +++ b/gtk/gtkstylecontextprivate.h @@ -20,7 +20,6 @@ #include "gtkstylecontext.h" #include "gtkstyleproviderprivate.h" -#include "gtksymboliccolor.h" #include "gtkbitmaskprivate.h" #include "gtkcssvalueprivate.h" @@ -46,7 +45,7 @@ void _gtk_style_context_queue_invalidate (GtkStyleContext *c gboolean _gtk_style_context_check_region_name (const gchar *str); gboolean _gtk_style_context_resolve_color (GtkStyleContext *context, - GtkSymbolicColor *color, + GtkCssValue *color, GdkRGBA *result, GtkCssDependencies *dependencies); void _gtk_style_context_get_cursor_color (GtkStyleContext *context, |