Skip to content
Snippets Groups Projects
Commit d161df86 authored by Yogi's avatar Yogi
Browse files

minor

parent ffae3282
No related branches found
No related tags found
No related merge requests found
...@@ -101,7 +101,6 @@ StringTS& StringTS::operator=(const StringTS& rhs) ...@@ -101,7 +101,6 @@ StringTS& StringTS::operator=(const StringTS& rhs)
String StringTS::getString() String StringTS::getString()
{ {
return String((const char*)str,len); return String((const char*)str,len);
} }
...@@ -424,7 +423,7 @@ void NetworkEvents::process(AudioSampleBuffer& buffer, ...@@ -424,7 +423,7 @@ void NetworkEvents::process(AudioSampleBuffer& buffer,
{ {
StringTS msg = networkMessagesQueue.front(); StringTS msg = networkMessagesQueue.front();
postTimestamppedStringToMidiBuffer(msg, events); postTimestamppedStringToMidiBuffer(msg, events);
CoreServices::sendStatusMessage("Network event received: " + msg.getString()); CoreServices::sendStatusMessage(("Network event received: " + msg.getString()).toRawUTF8());
// getUIComponent()->getLogWindow()->addLineToLog(msg); // getUIComponent()->getLogWindow()->addLineToLog(msg);
networkMessagesQueue.pop(); networkMessagesQueue.pop();
} }
...@@ -565,4 +564,4 @@ void NetworkEvents::createZmqContext() ...@@ -565,4 +564,4 @@ void NetworkEvents::createZmqContext()
if (zmqcontext != nullptr) if (zmqcontext != nullptr)
zmqcontext = zmq_ctx_new(); //<-- this is only available in version 3+ zmqcontext = zmq_ctx_new(); //<-- this is only available in version 3+
#endif #endif
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment