diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-28 01:04:28 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-28 01:04:28 +0100 |
commit | 87a89145c476713fa5716bf1a15b8b4d498d0a61 (patch) | |
tree | c99534c8205f0bb0b2a7455e8c0bfe1c52cb753c /test/core/model/TestDocument.hpp | |
parent | 4c3d0cd465a4445e1fbd851e975727be064a92f4 (diff) |
Renamed add* and include* methods for referencing another Typesystem/Domain description to "reference*" to have a consistent nomenclature
Diffstat (limited to 'test/core/model/TestDocument.hpp')
-rw-r--r-- | test/core/model/TestDocument.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/model/TestDocument.hpp b/test/core/model/TestDocument.hpp index 243672b..0cb52a3 100644 --- a/test/core/model/TestDocument.hpp +++ b/test/core/model/TestDocument.hpp @@ -36,7 +36,7 @@ static Rooted<Document> constructBookDocument(Manager &mgr, Logger &logger, { // Start with the (empty) document. Rooted<Document> doc{new Document(mgr, "myDoc.oxd")}; - doc->addDomain(bookDomain); + doc->referenceDomain(bookDomain); // Add the root. Rooted<StructuredEntity> root = |