diff options
Diffstat (limited to 'src/gui/ConnectWindow.hpp')
-rw-r--r-- | src/gui/ConnectWindow.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/ConnectWindow.hpp b/src/gui/ConnectWindow.hpp index 00ba5fd3..ca27787e 100644 --- a/src/gui/ConnectWindow.hpp +++ b/src/gui/ConnectWindow.hpp @@ -51,7 +51,9 @@ public: void set_connected_to(SharedPtr<Ingen::Interface> engine); void start(App& app, Ingen::Shared::World* world); - void ingen_response(int32_t id, Status status) { _attached = true; } + void ingen_response(int32_t id, Status status, const std::string& subject) { + _attached = true; + } bool attached() const { return _finished_connecting; } bool quit_flag() const { return _quit_flag; } |