summaryrefslogtreecommitdiff
path: root/xsd/cxx/parser/parser-source.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-04-15 14:30:56 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-04-15 14:30:56 +0200
commit9e21f520fb19163eeac2a9b80a4568dabfc29268 (patch)
tree50e27bcaaf0807bd29a845485732159aa684971f /xsd/cxx/parser/parser-source.cxx
parentea95e3637288a1369ac96011d0cec9feeead05f2 (diff)
Adjust to changed predicate names
Diffstat (limited to 'xsd/cxx/parser/parser-source.cxx')
-rw-r--r--xsd/cxx/parser/parser-source.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/xsd/cxx/parser/parser-source.cxx b/xsd/cxx/parser/parser-source.cxx
index 339bb6f..99bc566 100644
--- a/xsd/cxx/parser/parser-source.cxx
+++ b/xsd/cxx/parser/parser-source.cxx
@@ -289,10 +289,10 @@ namespace CXX
os << "if (";
- if (poly && e.global ())
+ if (poly && e.global_p ())
os << "(";
- if (e.qualified () && e.namespace_ ().name ())
+ if (e.qualified_p () && e.namespace_ ().name ())
{
os << "n == " << strlit (e.name ()) << " && " <<
"ns == " << strlit (e.namespace_ ().name ());
@@ -304,7 +304,7 @@ namespace CXX
// Only a globally-defined element can be a subst-group root.
//
- if (poly && e.global ())
+ if (poly && e.global_p ())
{
os << ") ||" << endl
<< "::xsd::cxx::parser::substitution_map_instance< " <<
@@ -389,10 +389,10 @@ namespace CXX
os << "if (";
- if (poly && e.global ())
+ if (poly && e.global_p ())
os << "(";
- if (e.qualified () && e.namespace_ ().name ())
+ if (e.qualified_p () && e.namespace_ ().name ())
{
os << "n == " << strlit (e.name ()) << " && " <<
"ns == " << strlit (e.namespace_ ().name ());
@@ -404,7 +404,7 @@ namespace CXX
// Only a globally-defined element can be a subst-group root.
//
- if (poly && e.global ())
+ if (poly && e.global_p ())
{
os << ") ||" << endl
<< "::xsd::cxx::parser::substitution_map_instance< " <<
@@ -455,7 +455,7 @@ namespace CXX
String const& name (ename (a));
String const& inst (emember (a));
- if (a.qualified () && a.namespace_ ().name ())
+ if (a.qualified_p () && a.namespace_ ().name ())
{
os << "if (n == " << strlit (a.name ()) << " && " <<
"ns == " << strlit (a.namespace_ ().name ()) << ")"