Skip to content
Snippets Groups Projects
Commit 5cacd137 authored by Friedemann Kleint's avatar Friedemann Kleint Committed by unknown
Browse files

Compile Windows

parent f3cc95b6
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ bool OutputCollector::listen()
return m_server->isListening();
m_server = new QLocalServer(this);
connect(m_server, SIGNAL(newConnection()), SLOT(newConnectionAvailable()));
return m_server->listen(QLatin1String("creator-%1").arg(QCoreApplication::applicationPid())); // XXX how to make that secure?
return m_server->listen(QString::fromLatin1("creator-%1").arg(QCoreApplication::applicationPid())); // XXX how to make that secure?
#else
if (!m_serverPath.isEmpty())
return true;
......
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