From 9981a0216f841d02d306afaa01990c5ae749cf51 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 20 Jan 2018 19:54:36 +0100 Subject: [PATCH] Add "windowlabel" element of wxStaticBoxSizer to the schema This was forgotten in the commit updating the sizer XRC handler. --- misc/schema/xrc_schema.rnc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/misc/schema/xrc_schema.rnc b/misc/schema/xrc_schema.rnc index b298088e45..ba9a688340 100644 --- a/misc/schema/xrc_schema.rnc +++ b/misc/schema/xrc_schema.rnc @@ -1864,6 +1864,7 @@ wxStaticBoxSizer_horz = stdObjectNodeAttributes & stdSizerProperties & [xrc:p="important"] element label {_, t_text }* & + element windowlabel {windowNode}* & [xrc:p="o"] element orient {_, "wxHORIZONTAL" }* & (wxBoxSizer_horz_item | objectRef)* } @@ -1874,6 +1875,7 @@ wxStaticBoxSizer_vert = stdObjectNodeAttributes & stdSizerProperties & [xrc:p="important"] element label {_, t_text }* & + element windowlabel {windowNode}* & element orient {_, "wxVERTICAL" } & (wxBoxSizer_vert_item | objectRef)* }