From 895427a1d4ef76c4379b39a30e22b8f9bd81c918 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Fri, 18 Dec 2015 18:40:35 +0100 Subject: [PATCH] Fixed #136. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 7d3ad3f65..6405ddbeb 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -69,7 +69,7 @@ int main(int argc, char *argv[]) { // TODO: dat '\n' do konstant // Check if another instance is running. - if (application.sendMessage((QStringList() << APP_IS_RUNNING << application.arguments().mid(1)).join("\n"))) { + if (application.sendMessage((QStringList() << APP_IS_RUNNING << application.arguments().mid(1)).join(QSL("\n")))) { qWarning("Another instance of the application is already running. Notifying it."); return EXIT_FAILURE; }