Change the org name and product name to ensure the the runtime config file is sensibly named.

This changes the default orgname to 'pgadmin' and product name to 'pgadmin4' in the runtime.
This commit is contained in:
Dave Page 2016-12-02 11:24:32 +09:00
parent 58910c4b62
commit c4c3d2b6b8

View File

@ -47,9 +47,9 @@ int main(int argc, char * argv[])
QApplication app(argc, argv);
// Setup the settings management
QCoreApplication::setOrganizationName("pgAdmin Development Team");
QCoreApplication::setOrganizationName("pgadmin");
QCoreApplication::setOrganizationDomain("pgadmin.org");
QCoreApplication::setApplicationName(PGA_APP_NAME);
QCoreApplication::setApplicationName(PGA_APP_NAME.toLower().replace(" ", ""));
// Display the spash screen
QSplashScreen *splash = new QSplashScreen();