File: main.cpp

package info (click to toggle)
flameshot 12.1.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 22,888 kB
  • sloc: cpp: 25,007; sh: 532; python: 198; xml: 85; makefile: 17
file content (11 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#include <singleapplication.h>

int main(int argc, char* argv[])
{
    // Allow secondary instances
    SingleApplication app(argc, argv);

    qWarning() << "Started a new instance";

    return app.exec();
}