hi,
I'm using Qsettings to store some data as ini file in windows. I want to see the ini file - but I don't know what is the location of the ini file.
this is my code:
QSettings *set = new QSettings(QSettings::IniFormat, QSettings::UserScope,
"bbb", "aaa");
set->setValue("size", size());
set->setValue("pos", pos());
where do I have to look ? or maybe I miss the code which write it to the file? when does the Qsettings write its values?
thanks!