From cab81112921dc86a22313cc88ea0ee7dea0fc98e Mon Sep 17 00:00:00 2001 From: Eivind Kvedalen Date: Sat, 26 Sep 2015 19:33:56 +0200 Subject: [PATCH] Removed PropertyExpressionEngine::getPaths() method. --- src/App/PropertyExpressionEngine.cpp | 18 ------------------ src/App/PropertyExpressionEngine.h | 2 -- 2 files changed, 20 deletions(-) diff --git a/src/App/PropertyExpressionEngine.cpp b/src/App/PropertyExpressionEngine.cpp index c0e5dafec..841fe32a8 100644 --- a/src/App/PropertyExpressionEngine.cpp +++ b/src/App/PropertyExpressionEngine.cpp @@ -722,24 +722,6 @@ void PropertyExpressionEngine::renameObjectIdentifiers(const std::map PropertyExpressionEngine::getPaths() const -{ - ExpressionMap::const_iterator i = expressions.begin(); - std::set result; - - while (i != expressions.end()) { - result.insert(i->first); - ++i; - } - - return result; -} - PyObject *PropertyExpressionEngine::getPyObject(void) { Py_Return; diff --git a/src/App/PropertyExpressionEngine.h b/src/App/PropertyExpressionEngine.h index 078725b0d..5b222bb41 100644 --- a/src/App/PropertyExpressionEngine.h +++ b/src/App/PropertyExpressionEngine.h @@ -112,8 +112,6 @@ public: void renameObjectIdentifiers(const std::map & paths); - std::set getPaths() const; - const App::ObjectIdentifier canonicalPath(const App::ObjectIdentifier &p) const; size_t numExpressions() const;