summaryrefslogtreecommitdiff
path: root/gtk/gtkcsskeyframes.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2019-03-22 04:20:17 +0100
committerBenjamin Otte <otte@redhat.com>2019-04-12 19:34:28 +0200
commita938c14d11b1a0036f4bddd6b5c46382523381bb (patch)
treed1114f46c72c25abce77b26fb7fa75869021a3b5 /gtk/gtkcsskeyframes.c
parentd6cc10ea7469b72feac164739c44ed502769c67b (diff)
downloadgtk+-a938c14d11b1a0036f4bddd6b5c46382523381bb.tar.gz
build: Add gtk-css static library
This library is meant to be the new CSS library that gets used from GDK, GSK and GTK for string printing and parsing. As a first step, move GtkCssProviderError into it. While doing so, split it into GtkCssParserError (for critical problems) and GtkCssParserWarning (for non-critical problems).
Diffstat (limited to 'gtk/gtkcsskeyframes.c')
-rw-r--r--gtk/gtkcsskeyframes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcsskeyframes.c b/gtk/gtkcsskeyframes.c
index b4b0c6c48c..267012aa55 100644
--- a/gtk/gtkcsskeyframes.c
+++ b/gtk/gtkcsskeyframes.c
@@ -238,7 +238,7 @@ parse_declaration (GtkCssKeyframes *keyframes,
property = _gtk_style_property_lookup (name);
if (property == NULL)
{
- /* should be GTK_CSS_PROVIDER_ERROR_NAME */
+ /* should be GTK_CSS_PARSER_ERROR_NAME */
_gtk_css_parser_error (parser, "No property named '%s'", name);
g_free (name);
return FALSE;