diff options
Diffstat (limited to 'src/bindings')
-rw-r--r-- | src/bindings/Client.hpp | 8 | ||||
-rw-r--r-- | src/bindings/ingen_bindings.hpp | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/bindings/Client.hpp b/src/bindings/Client.hpp index e2db6644..f277e7f9 100644 --- a/src/bindings/Client.hpp +++ b/src/bindings/Client.hpp @@ -24,10 +24,10 @@ class Client : public Ingen::ClientInterface { public: - /** Wrapper for engine->register_client to appease SWIG */ - virtual void subscribe(Ingen::ServerInterface* engine) { - engine->register_client(this); - } + /** Wrapper for engine->register_client to appease SWIG */ + virtual void subscribe(Ingen::ServerInterface* engine) { + engine->register_client(this); + } void bundle_begin() {} void bundle_end() {} diff --git a/src/bindings/ingen_bindings.hpp b/src/bindings/ingen_bindings.hpp index 90358cd8..b07baae8 100644 --- a/src/bindings/ingen_bindings.hpp +++ b/src/bindings/ingen_bindings.hpp @@ -23,8 +23,8 @@ class World; extern World* ingen_world; extern "C" { - bool run(World* world, const char* filename); - void script_iteration(World* world); +bool run(World* world, const char* filename); +void script_iteration(World* world); } } // namespace Ingen |