From 4675e82dae45a70ee27bf11d10aa6872485c8847 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 8 Oct 2007 02:57:21 +0000 Subject: Eliminate redundant object collections (ObjectModel having a separate collection of its children). Fix renaming/creation of children (fix ticket 97). git-svn-id: http://svn.drobilla.net/lad/ingen@844 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/PortModel.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libs/client/PortModel.hpp') diff --git a/src/libs/client/PortModel.hpp b/src/libs/client/PortModel.hpp index 8624c031..06f04e78 100644 --- a/src/libs/client/PortModel.hpp +++ b/src/libs/client/PortModel.hpp @@ -74,8 +74,8 @@ public: private: friend class Store; - PortModel(const Path& path, DataType type, Direction dir) - : ObjectModel(path, true), + PortModel(Store& store, const Path& path, DataType type, Direction dir) + : ObjectModel(store, path, true), _type(type), _direction(dir), _current_val(0.0f), -- cgit v1.2.1