summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/ObjectStore.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/ObjectStore.h')
-rw-r--r--src/libs/engine/ObjectStore.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/engine/ObjectStore.h b/src/libs/engine/ObjectStore.h
index 014d156c..2d3c225c 100644
--- a/src/libs/engine/ObjectStore.h
+++ b/src/libs/engine/ObjectStore.h
@@ -51,10 +51,10 @@ public:
void add(TreeNode<GraphObject*>* o);
TreeNode<GraphObject*>* remove(const string& key);
- const Tree<GraphObject*>& objects() { return m_objects; }
+ const Tree<GraphObject*>& objects() { return _objects; }
private:
- Tree<GraphObject*> m_objects;
+ Tree<GraphObject*> _objects;
};