diff options
author | Benjamin Otte <otte@redhat.com> | 2017-10-31 04:31:46 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2017-10-31 04:33:54 +0100 |
commit | 83fb7a649f07fc989ff149036b17698f7dee18c4 (patch) | |
tree | 772d5c0ac1a4ee7054cef63e6f675fdbeebc081f /gtk/gtkcssnodeprivate.h | |
parent | c8986e66ce482714f4ce2adf3c24dd53cca27bbe (diff) | |
download | gtk+-83fb7a649f07fc989ff149036b17698f7dee18c4.tar.gz |
css: Merge GtkStyleProviderPrivate into GtkStyleProvider
This is just lots of renaming.
The interface remains private, so the public API does not change, apart
from removing the definition of the Interface object to avoid
subclassing.
Diffstat (limited to 'gtk/gtkcssnodeprivate.h')
-rw-r--r-- | gtk/gtkcssnodeprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcssnodeprivate.h b/gtk/gtkcssnodeprivate.h index 797c51de8b..b326f06d9d 100644 --- a/gtk/gtkcssnodeprivate.h +++ b/gtk/gtkcssnodeprivate.h @@ -80,7 +80,7 @@ struct _GtkCssNodeClass GtkWidgetPath * (* create_widget_path) (GtkCssNode *cssnode); const GtkWidgetPath * (* get_widget_path) (GtkCssNode *cssnode); /* get style provider to use or NULL to use parent's */ - GtkStyleProviderPrivate *(* get_style_provider) (GtkCssNode *cssnode); + GtkStyleProvider * (* get_style_provider) (GtkCssNode *cssnode); /* get frame clock or NULL (only relevant for root node) */ GdkFrameClock * (* get_frame_clock) (GtkCssNode *cssnode); GtkCssStyle * (* update_style) (GtkCssNode *cssnode, @@ -159,7 +159,7 @@ gboolean gtk_css_node_init_matcher (GtkCssNode * GtkCssMatcher *matcher); GtkWidgetPath * gtk_css_node_create_widget_path (GtkCssNode *cssnode); const GtkWidgetPath * gtk_css_node_get_widget_path (GtkCssNode *cssnode); -GtkStyleProviderPrivate *gtk_css_node_get_style_provider(GtkCssNode *cssnode); +GtkStyleProvider * gtk_css_node_get_style_provider (GtkCssNode *cssnode); void gtk_css_node_print (GtkCssNode *cssnode, GtkStyleContextPrintFlags flags, |