From f968bb7018693b4e05c2133ca0b41db73d443013 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Fri, 18 Dec 2015 18:40:10 +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 a5667f0cb..7d3ad3f65 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("\n"))) { qWarning("Another instance of the application is already running. Notifying it."); return EXIT_FAILURE; }