From 42936aa5d924ca89fe3d887fd0ffeb7a281b547e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 16 Aug 2008 18:45:27 +0000 Subject: Add missing Store.cpp. More serialisation work. git-svn-id: http://svn.drobilla.net/lad/ingen@1402 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/events/SetPortValueEvent.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libs/engine/events/SetPortValueEvent.cpp') diff --git a/src/libs/engine/events/SetPortValueEvent.cpp b/src/libs/engine/events/SetPortValueEvent.cpp index ee9be86e..01263d2c 100644 --- a/src/libs/engine/events/SetPortValueEvent.cpp +++ b/src/libs/engine/events/SetPortValueEvent.cpp @@ -94,7 +94,7 @@ SetPortValueEvent::pre_process() if (_queued) { if (_port == NULL) { if (Path::is_valid(_port_path)) - _port = _engine.object_store()->find_port(_port_path); + _port = _engine.engine_store()->find_port(_port_path); else _error = ILLEGAL_PATH; } @@ -115,7 +115,7 @@ SetPortValueEvent::execute(ProcessContext& context) if (_error == NO_ERROR && _port == NULL) { if (Path::is_valid(_port_path)) - _port = _engine.object_store()->find_port(_port_path); + _port = _engine.engine_store()->find_port(_port_path); else _error = ILLEGAL_PATH; } -- cgit v1.2.1