From 184cf0e8f86e324016dd9c78a36e333d2d48cb96 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Mon, 15 Jul 2013 14:59:07 +0200 Subject: [PATCH] Fix organization domains. Task-number: QTBUG-32390 Change-Id: Ibc7e0e85adfffdb7abbd61e8948064e36a8fce9b Reviewed-by: Sergio Ahumada --- tests/auto/qml/qqmlengine/tst_qqmlengine.cpp | 4 ++-- .../qml/qqmlsqldatabase/tst_qqmlsqldatabase.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/auto/qml/qqmlengine/tst_qqmlengine.cpp b/tests/auto/qml/qqmlengine/tst_qqmlengine.cpp index d604118..4d06665 100644 --- a/tests/auto/qml/qqmlengine/tst_qqmlengine.cpp +++ b/tests/auto/qml/qqmlengine/tst_qqmlengine.cpp @@ -241,8 +241,8 @@ void tst_qqmlengine::offlineStoragePath() // Without these set, QDesktopServices::storageLocation returns // strings with extra "//" at the end. We set them to ignore this problem. qApp->setApplicationName("tst_qqmlengine"); - qApp->setOrganizationName("Nokia"); - qApp->setOrganizationDomain("nokia.com"); + qApp->setOrganizationName("QtProject"); + qApp->setOrganizationDomain("www.qt-project.org"); QQmlEngine engine; diff --git a/tests/auto/qml/qqmlsqldatabase/tst_qqmlsqldatabase.cpp b/tests/auto/qml/qqmlsqldatabase/tst_qqmlsqldatabase.cpp index e52e479..9d8fad8 100644 --- a/tests/auto/qml/qqmlsqldatabase/tst_qqmlsqldatabase.cpp +++ b/tests/auto/qml/qqmlsqldatabase/tst_qqmlsqldatabase.cpp @@ -62,8 +62,8 @@ public: tst_qqmlsqldatabase() { qApp->setApplicationName("tst_qqmlsqldatabase"); - qApp->setOrganizationName("Nokia"); - qApp->setOrganizationDomain("nokia.com"); + qApp->setOrganizationName("QtProject"); + qApp->setOrganizationDomain("www.qt-project.org"); engine = new QQmlEngine; } -- 1.7.2.5