aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xsd-frontend/parser.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/xsd-frontend/parser.cxx b/xsd-frontend/parser.cxx
index d0df805..2c090d5 100644
--- a/xsd-frontend/parser.cxx
+++ b/xsd-frontend/parser.cxx
@@ -2358,9 +2358,13 @@ namespace XSDFrontend
if (String af = trim (s["attributeFormDefault"]))
qualify_attribute_ = af == L"qualified";
+ else
+ qualify_attribute_ = false;
if (String ef = trim (s["elementFormDefault"]))
qualify_element_ = ef == L"qualified";
+ else
+ qualify_element_ = false;
push (s);
@@ -4186,6 +4190,8 @@ namespace XSDFrontend
if (String name = trim (a["name"]))
{
+ wcout << name << " " << qualified << endl;
+
if (trace_)
wcout << "attribute '" << name << "'" << endl;