diff options
author | David Robillard <d@drobilla.net> | 2007-01-22 05:00:29 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-01-22 05:00:29 +0000 |
commit | ea3586e44a1621f97298e667a79f4c4f75f902ba (patch) | |
tree | 690673160bab500b197b0be8551daf55e927104b /src/libs/engine/events/ConnectionEvent.h | |
parent | 6fc1fa0d3bec4b82cb3af4c4e887241087899e7e (diff) | |
download | ingen-ea3586e44a1621f97298e667a79f4c4f75f902ba.tar.gz ingen-ea3586e44a1621f97298e667a79f4c4f75f902ba.tar.bz2 ingen-ea3586e44a1621f97298e667a79f4c4f75f902ba.zip |
Created Raul namespace.
git-svn-id: http://svn.drobilla.net/lad/ingen@265 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/events/ConnectionEvent.h')
-rw-r--r-- | src/libs/engine/events/ConnectionEvent.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libs/engine/events/ConnectionEvent.h b/src/libs/engine/events/ConnectionEvent.h index 7328ca91..6e4f11b4 100644 --- a/src/libs/engine/events/ConnectionEvent.h +++ b/src/libs/engine/events/ConnectionEvent.h @@ -57,14 +57,14 @@ private: enum ErrorType { NO_ERROR, PARENT_PATCH_DIFFERENT, PORT_NOT_FOUND, TYPE_MISMATCH }; - Path m_src_port_path; - Path m_dst_port_path; + Raul::Path m_src_port_path; + Raul::Path m_dst_port_path; - Patch* m_patch; - Port* m_src_port; - Port* m_dst_port; + Patch* m_patch; + Port* m_src_port; + Port* m_dst_port; - QueuedEvent* m_typed_event; + QueuedEvent* m_typed_event; ErrorType m_error; }; |