forked from AuroraMiddleware/gtk
cssnodestylecache: Use const pointer in lookup
This commit is contained in:
parent
e1592c599e
commit
4c39204ddd
@ -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)
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user