summaryrefslogtreecommitdiff
path: root/gtk/gtkcssfontfeaturesvalue.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtkcssfontfeaturesvalue.c')
-rw-r--r--gtk/gtkcssfontfeaturesvalue.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkcssfontfeaturesvalue.c b/gtk/gtkcssfontfeaturesvalue.c
index 8fb5728268..262539e216 100644
--- a/gtk/gtkcssfontfeaturesvalue.c
+++ b/gtk/gtkcssfontfeaturesvalue.c
@@ -230,7 +230,7 @@ gtk_css_font_features_value_parse (GtkCssParser *parser)
char *name;
int num;
- if (_gtk_css_parser_try (parser, "normal", TRUE))
+ if (gtk_css_parser_try_ident (parser, "normal"))
return gtk_css_font_features_value_new_default ();
result = gtk_css_font_features_value_new_empty ();
@@ -252,9 +252,9 @@ gtk_css_font_features_value_parse (GtkCssParser *parser)
return NULL;
}
- if (_gtk_css_parser_try (parser, "on", TRUE))
+ if (gtk_css_parser_try_ident (parser, "on"))
val = _gtk_css_number_value_new (1.0, GTK_CSS_NUMBER);
- else if (_gtk_css_parser_try (parser, "off", TRUE))
+ else if (gtk_css_parser_try_ident (parser, "off"))
val = _gtk_css_number_value_new (0.0, GTK_CSS_NUMBER);
else if (_gtk_css_parser_try_int (parser, &num))
val = _gtk_css_number_value_new ((double)num, GTK_CSS_NUMBER);