diff options
Diffstat (limited to 'src/core/parser/ParserContext.cpp')
-rw-r--r-- | src/core/parser/ParserContext.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/parser/ParserContext.cpp b/src/core/parser/ParserContext.cpp index cc09b5e..b4e2a9a 100644 --- a/src/core/parser/ParserContext.cpp +++ b/src/core/parser/ParserContext.cpp @@ -39,12 +39,12 @@ ParserContext::ParserContext(Registry ®istry, { } -NodeVector<Node> ParserContext::link(const std::string &path, +NodeVector<Node> ParserContext::import(const std::string &path, const std::string mimetype, const std::string rel, const RttiSet &supportedTypes) { - return resourceManager.link(*this, path, mimetype, rel, supportedTypes); + return resourceManager.import(*this, path, mimetype, rel, supportedTypes); } NodeVector<Node> ParserContext::include(const std::string &path, |