summaryrefslogtreecommitdiff
path: root/common/Session.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/Session.cpp')
-rw-r--r--common/Session.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Session.cpp b/common/Session.cpp
index 815fd5391..a0cdabe41 100644
--- a/common/Session.cpp
+++ b/common/Session.cpp
@@ -182,7 +182,7 @@ void Session::parseDocOptions(const StringVector& tokens, int& part, std::string
if (getTokenString(tokens[offset], "options", _docOptions))
{
if (tokens.size() > offset + 1)
- _docOptions += Poco::cat(std::string(" "), tokens.begin() + offset + 1, tokens.end());
+ _docOptions += tokens.cat(std::string(" "), offset + 1);
}
}
}