Correct error messages for wrong wxBoxSizer flags in the schema.

"horizontal" and "vertical" were reversed, making things more confusing
instead of more clear.
This commit is contained in:
Vadim Zeitlin
2015-04-17 18:29:00 +02:00
parent 3673966ee3
commit 86f94d431e

View File

@@ -1613,11 +1613,11 @@ t_sizer_flags_alignh = xsd:string {
")*"
}
t_horz_sizer_flags = ("*** Sizer flags excluding vertical alignment ones ***"
t_horz_sizer_flags = ("*** Sizer flags excluding horizontal alignment ones ***"
| t_sizer_flags_grow
| t_sizer_flags_alignv
)
t_vert_sizer_flags = ("*** Sizer flags excluding horizontal alignment ones ***"
t_vert_sizer_flags = ("*** Sizer flags excluding vertical alignment ones ***"
| t_sizer_flags_grow
| t_sizer_flags_alignh
)