update SingleApplication

This commit is contained in:
Nicolas Werner 2021-06-16 22:30:45 +02:00
parent 12ce7686ce
commit 6a7d28d1b5
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
30 changed files with 1052 additions and 65 deletions

View file

@ -0,0 +1,10 @@
#include <singleapplication.h>
int main(int argc, char *argv[])
{
SingleApplication app( argc, argv );
qWarning() << "Started a new instance";
return app.exec();
}