mirror of
https://github.com/fergalmoran/flameshot.git
synced 2025-12-22 09:51:06 +00:00
12 lines
210 B
C++
12 lines
210 B
C++
#include <singleapplication.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
// Allow secondary instances
|
|
SingleApplication app(argc, argv);
|
|
|
|
qWarning() << "Started a new instance";
|
|
|
|
return app.exec();
|
|
}
|