From c4c3d2b6b81abbb3fbd52fed519a1c0b1a17b7d6 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Fri, 2 Dec 2016 11:24:32 +0900 Subject: [PATCH] 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. --- runtime/pgAdmin4.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/pgAdmin4.cpp b/runtime/pgAdmin4.cpp index 9ce1958b0..d7dd89e83 100644 --- a/runtime/pgAdmin4.cpp +++ b/runtime/pgAdmin4.cpp @@ -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();