From d20a8a5ee6554a173e1f2e1e5910cea258d8fd0b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 15 Apr 2010 14:42:19 +0200 Subject: Adjust to changed predicate names --- xsde/processing/inheritance/processor.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'xsde/processing') diff --git a/xsde/processing/inheritance/processor.cxx b/xsde/processing/inheritance/processor.cxx index bc42ca4..7c6a411 100644 --- a/xsde/processing/inheritance/processor.cxx +++ b/xsde/processing/inheritance/processor.cxx @@ -59,7 +59,7 @@ namespace Processing if (dynamic_cast (&n) != 0) return L""; // There is a bug if you see this. - if (n.named ()) + if (n.named_p ()) { SemanticGraph::Scope& scope (n.scope ()); @@ -121,7 +121,7 @@ namespace Processing { SemanticGraph::Type& t (m.type ()); - if (!t.named ()) + if (!t.named_p ()) { if (types_seen_.find (&t) == types_seen_.end ()) { @@ -224,7 +224,7 @@ namespace Processing virtual Void traverse (SemanticGraph::Type& t) { - if (t.named ()) + if (t.named_p ()) types_seen_.insert (&t); } @@ -247,7 +247,7 @@ namespace Processing { SemanticGraph::Type& t (e.type ()); - if (!t.named ()) + if (!t.named_p ()) { t.context ().set ("instance-name", xpath (e)); check_dep (e, t); @@ -358,7 +358,7 @@ namespace Processing // String name (t.name ()); { - Names& n (t.named_ ()); + Names& n (t.named ()); root_.delete_edge (scope, t, n); } @@ -367,7 +367,7 @@ namespace Processing { // Convert to the insert-after call. // - Scope::NamesIterator i (scope.find (global.named_ ())); + Scope::NamesIterator i (scope.find (global.named ())); if (i == scope.names_begin ()) i = scope.names_end (); -- cgit v1.1