What's supposed to be the output of qApp->applicationName()? I run it for my app but all I get is an empty string. Is there an easy way to get the application name through Qt? The only way I see so far is qApp->arguments().at(0)
which gives me
c:\local\apptest\debug\AppTest.exe

Is there an easier Qt way to just get the "AppTest" out of this string?