summaryrefslogtreecommitdiff
path: root/src/core/parser/ParserContext.cpp
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-27 20:27:47 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-27 20:27:47 +0100
commit4c3d0cd465a4445e1fbd851e975727be064a92f4 (patch)
tree3b6832a9b33ace78ceb136020066945929d415ab /src/core/parser/ParserContext.cpp
parent34ea1fe74746577f1834b5556183cd230201146f (diff)
Renamed "link" to "import"
Diffstat (limited to 'src/core/parser/ParserContext.cpp')
-rw-r--r--src/core/parser/ParserContext.cpp4
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 &registry,
{
}
-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,