cssnodestylecache: Use const pointer in lookup

This commit is contained in:
Timm Bäder 2017-02-28 08:23:19 +01:00
parent e1592c599e
commit 4c39204ddd
3 changed files with 9 additions and 9 deletions

View File

@ -318,7 +318,7 @@ lookup_in_global_parent_cache (GtkCssNode *node,
g_assert (node->cache == NULL);
node->cache = gtk_css_node_style_cache_lookup (parent->cache,
(GtkCssNodeDeclaration *) decl,
decl,
gtk_css_node_is_first_child (node),
gtk_css_node_is_last_child (node));
if (node->cache == NULL)

View File

@ -163,10 +163,10 @@ gtk_css_node_style_cache_insert (GtkCssNodeStyleCache *parent,
}
GtkCssNodeStyleCache *
gtk_css_node_style_cache_lookup (GtkCssNodeStyleCache *parent,
GtkCssNodeDeclaration *decl,
gboolean is_first,
gboolean is_last)
gtk_css_node_style_cache_lookup (GtkCssNodeStyleCache *parent,
const GtkCssNodeDeclaration *decl,
gboolean is_first,
gboolean is_last)
{
GtkCssNodeStyleCache *result;

View File

@ -36,10 +36,10 @@ GtkCssNodeStyleCache * gtk_css_node_style_cache_insert (GtkCssNodeStyle
gboolean is_first,
gboolean is_last,
GtkCssStyle *style);
GtkCssNodeStyleCache * gtk_css_node_style_cache_lookup (GtkCssNodeStyleCache *parent,
GtkCssNodeDeclaration *decl,
gboolean is_first,
gboolean is_last);
GtkCssNodeStyleCache * gtk_css_node_style_cache_lookup (GtkCssNodeStyleCache *parent,
const GtkCssNodeDeclaration *decl,
gboolean is_first,
gboolean is_last);
G_END_DECLS