I wan't to display a message, only on the first usage of application, i.e. a piece of code should be executed only once, when application is first time invoked. I tried using QSettings, but couldn't work out any way.
@
if(firstTime)
{
//do something!
}
@