From 8f2aea695881492c77684fca9c5c6704c6e1bef6 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 21 Jan 2013 13:29:00 +0100 Subject: [PATCH] Made String::Split() const. --- lib/base/qstring.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base/qstring.h b/lib/base/qstring.h index bb3065f08..07b7f0474 100644 --- a/lib/base/qstring.h +++ b/lib/base/qstring.h @@ -70,7 +70,7 @@ public: void Replace(size_t first, size_t second, const String& str); template - vector Split(const Predicate& predicate) + vector Split(const Predicate& predicate) const { vector tokens; boost::algorithm::split(tokens, m_Data, predicate);