summaryrefslogtreecommitdiff
path: root/libs/surfaces/websockets/ardour_websockets.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/surfaces/websockets/ardour_websockets.cc')
-rw-r--r--libs/surfaces/websockets/ardour_websockets.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/surfaces/websockets/ardour_websockets.cc b/libs/surfaces/websockets/ardour_websockets.cc
index 0dd3bea4c2..e02bd84d28 100644
--- a/libs/surfaces/websockets/ardour_websockets.cc
+++ b/libs/surfaces/websockets/ardour_websockets.cc
@@ -43,7 +43,11 @@ ArdourWebsockets::ArdourWebsockets (Session& s)
, _server (*this)
, _dispatcher (*this)
{
- _components = { &_strips, &_globals, &_server, &_feedback, &_dispatcher };
+ _components.push_back (&_strips);
+ _components.push_back (&_globals);
+ _components.push_back (&_server);
+ _components.push_back (&_feedback);
+ _components.push_back (&_dispatcher);
}
ArdourWebsockets::~ArdourWebsockets ()