summary refs log tree commit diff
path: root/third_party/SingleApplication-3.3.2/examples/sending_arguments/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/SingleApplication-3.3.2/examples/sending_arguments/main.cpp')
-rwxr-xr-xthird_party/SingleApplication-3.3.2/examples/sending_arguments/main.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/third_party/SingleApplication-3.3.2/examples/sending_arguments/main.cpp b/third_party/SingleApplication-3.3.2/examples/sending_arguments/main.cpp
deleted file mode 100755
index a9d34dd9..00000000
--- a/third_party/SingleApplication-3.3.2/examples/sending_arguments/main.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#include <singleapplication.h>
-#include "messagereceiver.h"
-
-int main(int argc, char *argv[])
-{
-    // Allow secondary instances
-    SingleApplication app( argc, argv, true );
-
-    MessageReceiver msgReceiver;
-
-    // If this is a secondary instance
-    if( app.isSecondary() ) {
-        app.sendMessage( app.arguments().join(' ').toUtf8() );
-        qDebug() << "App already running.";
-        qDebug() << "Primary instance PID: " << app.primaryPid();
-        qDebug() << "Primary instance user: " << app.primaryUser();
-        return 0;
-    } else {
-        QObject::connect(
-            &app,
-            &SingleApplication::receivedMessage,
-            &msgReceiver,
-            &MessageReceiver::receivedMessage
-        );
-    }
-
-    return app.exec();
-}