I am trying to create an ini file that will save me configuration data, I have a singleletone class that setting the QSettings object looks like this:
... #DEFINE CONFIG_FILE_NAME "myconfig.ini" m_pSettings = new QSettings(QDir::currentPath()+"/"+CONFIG_FILE_NAME,QSettings::IniFormat);
this accumulates the document, but when I look in my dir application, there is no myconfig.ini file, what am I doing wrong?
source share