>     QGuiApplication app(argc, argv);
>     appDispName = app.applicationDisplayName();
>     appName = app.applicationName();
>
> I would expect that
>
> appDispName="myApp"
> appName = harbour-myapp
>
> but they don’t, both are "harbour-myapp", is this correct ?
>

Apparently you need to set it. My main() starts with something like:

    QString dispname("myAPP");
    QScopedPointer<QGuiApplication> app(SailfishApp::application(argc,
argv));
    app->setApplicationName(dispname);



_______________________________________________
SailfishOS.org Devel mailing list
To unsubscribe, please send a mail to devel-unsubscr...@lists.sailfishos.org

Reply via email to