summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp4
-rw-r--r--tools/qml/main.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp b/tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp
index f67cecdc..ec0d5a75 100644
--- a/tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp
+++ b/tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp
@@ -172,8 +172,8 @@ void tst_qdeclarativeengine::offlineStoragePath()
// Without these set, QDesktopServices::storageLocation returns
// strings with extra "//" at the end. We set them to ignore this problem.
qApp->setApplicationName("tst_qdeclarativeengine");
- qApp->setOrganizationName("Nokia");
- qApp->setOrganizationDomain("nokia.com");
+ qApp->setOrganizationName("QtProject");
+ qApp->setOrganizationDomain("www.qt-project.org");
QDeclarativeEngine engine;
diff --git a/tools/qml/main.cpp b/tools/qml/main.cpp
index c0b18355..7f1d61ea 100644
--- a/tools/qml/main.cpp
+++ b/tools/qml/main.cpp
@@ -542,8 +542,8 @@ int main(int argc, char ** argv)
Application app(argc, argv);
app.setApplicationName(QLatin1String("QtQmlViewer"));
- app.setOrganizationName(QLatin1String("Nokia"));
- app.setOrganizationDomain(QLatin1String("nokia.com"));
+ app.setOrganizationName(QLatin1String("QtProject"));
+ app.setOrganizationDomain(QLatin1String("www.qt-project.org"));
QDeclarativeViewer::registerTypes();
QDeclarativeTester::registerTypes();