diff options
author | David Robillard <d@drobilla.net> | 2013-06-09 16:54:57 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-06-09 16:54:57 +0000 |
commit | 3651ea647542b892cca131f07b4036a53d9252e9 (patch) | |
tree | 222585d0e085cbb3836d4bf4b0d912f0a5fceaf8 /src/Driver.hpp | |
parent | dc25b0fa394dbc61da71a9d8dfeb4cfdf99ae44f (diff) | |
download | patchage-3651ea647542b892cca131f07b4036a53d9252e9.tar.gz patchage-3651ea647542b892cca131f07b4036a53d9252e9.tar.bz2 patchage-3651ea647542b892cca131f07b4036a53d9252e9.zip |
Fix compilation with --jack-dbus (#917).
I don't know why I maintain this or what the point of it is...
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@5141 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/Driver.hpp')
-rw-r--r-- | src/Driver.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Driver.hpp b/src/Driver.hpp index 6b08ac1..8a928b7 100644 --- a/src/Driver.hpp +++ b/src/Driver.hpp @@ -39,9 +39,8 @@ public: virtual void refresh() = 0; virtual void destroy_all() {} - virtual PatchagePort* create_port_view( - Patchage* patchage, - const PortID& id) = 0; + virtual PatchagePort* create_port_view(Patchage* patchage, + const PortID& id) = 0; virtual bool connect(PatchagePort* src_port, PatchagePort* dst_port) = 0; |