Hi,

If you use a default constructor for QSettings, it automatically gets the values of:

Qt Code:
  1. QCoreApplication::setOrganizationName("MySoft");
  2. QCoreApplication::setOrganizationDomain("mysoft.com");
  3. QCoreApplication::setApplicationName("Star Runner");
To copy to clipboard, switch view to plain text mode 

That's all fine, but how do you then go about changing for example:

Qt Code:
  1. QSettings::format()
To copy to clipboard, switch view to plain text mode 

This only returns the format used, but if I don't specify it in the default constructor because I want the program to automatically get the values of my organisation and application names, then there's no way of specifying the format after?