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

minor

parent ffae3282
No related branches found
Tags PCIe-V0
No related merge requests found
......@@ -101,7 +101,6 @@ StringTS& StringTS::operator=(const StringTS& rhs)
String StringTS::getString()
{
return String((const char*)str,len);
}
......@@ -424,7 +423,7 @@ void NetworkEvents::process(AudioSampleBuffer& buffer,
{
StringTS msg = networkMessagesQueue.front();
postTimestamppedStringToMidiBuffer(msg, events);
CoreServices::sendStatusMessage("Network event received: " + msg.getString());
CoreServices::sendStatusMessage(("Network event received: " + msg.getString()).toRawUTF8());
// getUIComponent()->getLogWindow()->addLineToLog(msg);
networkMessagesQueue.pop();
}
......@@ -565,4 +564,4 @@ void NetworkEvents::createZmqContext()
if (zmqcontext != nullptr)
zmqcontext = zmq_ctx_new(); //<-- this is only available in version 3+
#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