From 6622b87482cdb41598222a5d144ac6fc57232692 Mon Sep 17 00:00:00 2001 From: Shawn Rutledge Date: Fri, 27 Jun 2014 12:59:14 +0200 Subject: Tools and examples: consistently use organization name QtProject This affects the location of the QSettings files or registry entries. Other parts of Qt are using this organization name so it's good to have all the settings in the same place. [ChangeLog][QtQuick] tools and examples consistently use the QtProject organization name Change-Id: I1fae4eaed0248411fe95dda9572d38006648b162 Reviewed-by: J-P Nurmi --- examples/quick/shared/shared.h | 2 +- tools/qml/main.cpp | 2 +- tools/qmlscene/main.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/quick/shared/shared.h b/examples/quick/shared/shared.h index d2f7c98311..2359b79acc 100644 --- a/examples/quick/shared/shared.h +++ b/examples/quick/shared/shared.h @@ -45,7 +45,7 @@ #define DECLARATIVE_EXAMPLE_MAIN(NAME) int main(int argc, char* argv[]) \ {\ QGuiApplication app(argc,argv);\ - app.setOrganizationName("Qt Project");\ + app.setOrganizationName("QtProject");\ app.setOrganizationDomain("qt-project.org");\ app.setApplicationName(QFileInfo(app.applicationFilePath()).baseName());\ QQuickView view;\ diff --git a/tools/qml/main.cpp b/tools/qml/main.cpp index 1c349d8538..c35b7a2a1c 100644 --- a/tools/qml/main.cpp +++ b/tools/qml/main.cpp @@ -393,7 +393,7 @@ int main(int argc, char *argv[]) } app->setApplicationName("Qml Runtime"); - app->setOrganizationName("Qt Project"); + app->setOrganizationName("QtProject"); app->setOrganizationDomain("qt-project.org"); qmlRegisterType("QmlRuntime.Config", VERSION_MAJ, VERSION_MIN, "Configuration"); diff --git a/tools/qmlscene/main.cpp b/tools/qmlscene/main.cpp index 7512b5482f..b048337cad 100644 --- a/tools/qmlscene/main.cpp +++ b/tools/qmlscene/main.cpp @@ -419,7 +419,7 @@ int main(int argc, char ** argv) QGuiApplication app(argc, argv); #endif app.setApplicationName("QtQmlViewer"); - app.setOrganizationName("Qt Project"); + app.setOrganizationName("QtProject"); app.setOrganizationDomain("qt-project.org"); #ifndef QT_NO_TRANSLATION -- cgit v1.2.3