summaryrefslogtreecommitdiff
path: root/gtk/gtkcsskeyframes.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2019-04-09 05:40:50 +0200
committerBenjamin Otte <otte@redhat.com>2019-04-12 19:34:28 +0200
commit1cd93961548efd7386fbd403f8b374ec41d08ffd (patch)
treef54f70c5006441cddcbbe42981170989d7b5a916 /gtk/gtkcsskeyframes.c
parentde73ac980f2c4a7ce981910d4ebd68591bde7329 (diff)
downloadgtk+-1cd93961548efd7386fbd403f8b374ec41d08ffd.tar.gz
css: Review error messages
... and move them from _gtk_css_parser_error() to the proper new error message.
Diffstat (limited to 'gtk/gtkcsskeyframes.c')
-rw-r--r--gtk/gtkcsskeyframes.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/gtk/gtkcsskeyframes.c b/gtk/gtkcsskeyframes.c
index 16d0e5efda..e4a577379d 100644
--- a/gtk/gtkcsskeyframes.c
+++ b/gtk/gtkcsskeyframes.c
@@ -234,8 +234,7 @@ gtk_css_keyframes_parse_declaration (GtkCssKeyframes *keyframes,
property = _gtk_style_property_lookup (name);
if (property == NULL)
{
- /* should be GTK_CSS_PARSER_ERROR_NAME */
- _gtk_css_parser_error (parser, "No property named '%s'", name);
+ gtk_css_parser_error_value (parser, "No property named '%s'", name);
g_free (name);
return FALSE;
}
@@ -244,7 +243,7 @@ gtk_css_keyframes_parse_declaration (GtkCssKeyframes *keyframes,
if (!gtk_css_parser_try_token (parser, GTK_CSS_TOKEN_COLON))
{
- _gtk_css_parser_error (parser, "Expected a ':'");
+ gtk_css_parser_error_syntax (parser, "Expected a ':'");
return FALSE;
}
@@ -254,7 +253,7 @@ gtk_css_keyframes_parse_declaration (GtkCssKeyframes *keyframes,
if (!gtk_css_parser_has_token (parser, GTK_CSS_TOKEN_EOF))
{
- _gtk_css_parser_error (parser, "Junk at end of value");
+ gtk_css_parser_error_syntax (parser, "Junk at end of value");
_gtk_css_value_unref (value);
return FALSE;
}
@@ -274,12 +273,12 @@ gtk_css_keyframes_parse_declaration (GtkCssKeyframes *keyframes,
}
if (!animatable)
- _gtk_css_parser_error (parser, "shorthand '%s' cannot be animated", _gtk_style_property_get_name (property));
+ gtk_css_parser_error_value (parser, "shorthand '%s' cannot be animated", _gtk_style_property_get_name (property));
}
else if (GTK_IS_CSS_STYLE_PROPERTY (property))
{
if (!keyframes_set_value (keyframes, k, GTK_CSS_STYLE_PROPERTY (property), value))
- _gtk_css_parser_error (parser, "Cannot animate property '%s'", _gtk_style_property_get_name (property));
+ gtk_css_parser_error_value (parser, "Cannot animate property '%s'", _gtk_style_property_get_name (property));
}
else
{