summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2013-07-15 14:54:47 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-07-15 15:40:34 +0200
commit489e26b2e1654f45a3a4ef645f4471b754978b5a (patch)
tree88858e3cfbf02cb1867fa764e59a285e18d5bf72
parent84f0377517f7289cea5e33fbd3239a4fabcc258b (diff)
Fix organization domains.
Task-number: QTBUG-32390 Change-Id: Ibaeb0b1ad2ee7b446252fc5e5984c78dbb909a3f Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
-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();