projects
/
gtk+3.0.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6ba8df
)
CssSelector: Fix warning for bad pseudo-class name
author
Daniel Boles
<dboles@src.gnome.org>
Sat, 18 Feb 2017 21:01:38 +0000
(21:01 +0000)
committer
Daniel Boles
<dboles@src.gnome.org>
Sat, 18 Feb 2017 21:03:47 +0000
(21:03 +0000)
It was "Missing name of pseudo-class", but the real problem is exactly
the opposite: we /have/ been given a name, but it is not a valid one.
Change it to "Invalid name of pseudo-class" to minimise confusion.
gtk/gtkcssselector.c
patch
|
blob
|
history
diff --git
a/gtk/gtkcssselector.c
b/gtk/gtkcssselector.c
index d3bcc795ed7f3b01850d640c8612edb763cb4b27..06258cf60a3953384ea70231bd15874ae0704575 100644
(file)
--- a/
gtk/gtkcssselector.c
+++ b/
gtk/gtkcssselector.c
@@
-1189,7
+1189,7
@@
parse_selector_pseudo_class (GtkCssParser *parser,
}
}
- _gtk_css_parser_error (parser, "
Missing
name of pseudo-class");
+ _gtk_css_parser_error (parser, "
Invalid
name of pseudo-class");
if (selector)
_gtk_css_selector_free (selector);
return NULL;