diff options
-rw-r--r-- | ingen/URIs.hpp | 10 | ||||
-rw-r--r-- | src/server/LV2Block.cpp | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/ingen/URIs.hpp b/ingen/URIs.hpp index 42d06e10..ca41bafe 100644 --- a/ingen/URIs.hpp +++ b/ingen/URIs.hpp @@ -1,6 +1,6 @@ /* This file is part of Ingen. - Copyright 2007-2012 David Robillard <http://drobilla.net/> + Copyright 2007-2013 David Robillard <http://drobilla.net/> Ingen is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free @@ -45,10 +45,10 @@ public: struct Quark : public Raul::URI { Quark(Ingen::Forge& forge, URIMap* map, const char* str); - operator LV2_URID() const { return id; } - operator Atom() const { return atom; } - uint32_t id; - Atom atom; + operator LV2_URID() const { return id; } + operator Atom() const { return atom; } + uint32_t id; + Atom atom; }; Ingen::Forge& forge; diff --git a/src/server/LV2Block.cpp b/src/server/LV2Block.cpp index 797cc81f..e065a5b5 100644 --- a/src/server/LV2Block.cpp +++ b/src/server/LV2Block.cpp @@ -1,6 +1,6 @@ /* This file is part of Ingen. - Copyright 2007-2012 David Robillard <http://drobilla.net/> + Copyright 2007-2013 David Robillard <http://drobilla.net/> Ingen is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free @@ -486,9 +486,9 @@ LV2Block::process(ProcessContext& context) } void -LV2Block::set_port_buffer(uint32_t voice, - uint32_t port_num, - BufferRef buf) +LV2Block::set_port_buffer(uint32_t voice, + uint32_t port_num, + BufferRef buf) { BlockImpl::set_port_buffer(voice, port_num, buf); lilv_instance_connect_port( |