diff options
author | Itay Grudev <itay+git2020@grudev.com> | 2020-09-09 00:41:05 +0100 |
---|---|---|
committer | Itay Grudev <itay+git2020@grudev.com> | 2020-09-09 00:48:55 +0100 |
commit | fb9c0bd2ef0dff76f4a2488395fe011aca888e52 (patch) | |
tree | 22f9fec606fff8d62f62ccb7503c671cc7b378cd /examples | |
parent | Mitigated possible race condition during app startup (diff) | |
download | singleapplication-fb9c0bd2ef0dff76f4a2488395fe011aca888e52.tar.xz |
Removed extra qDebug statements
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/basic/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/basic/main.cpp b/examples/basic/main.cpp index 1841902..c22af03 100755 --- a/examples/basic/main.cpp +++ b/examples/basic/main.cpp @@ -5,5 +5,7 @@ int main(int argc, char *argv[]) // Allow secondary instances SingleApplication app( argc, argv ); + qWarning() << "Started a new instance"; + return app.exec(); } |