summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/appman/appman.cpp7
-rw-r--r--src/tools/controller/controller.cpp9
-rw-r--r--src/tools/controller/interrupthandler.cpp3
-rw-r--r--src/tools/controller/interrupthandler.h3
-rw-r--r--src/tools/dumpqmltypes/dumpqmltypes.cpp9
-rw-r--r--src/tools/launcher-qml/launcher-qml.cpp9
-rw-r--r--src/tools/launcher-qml/launcher-qml_p.h3
-rw-r--r--src/tools/packager/packager.cpp9
-rw-r--r--src/tools/packager/packagingjob.cpp3
-rw-r--r--src/tools/packager/packagingjob.h3
-rw-r--r--src/tools/testrunner/testrunner.cpp3
-rw-r--r--src/tools/testrunner/testrunner.h3
-rw-r--r--src/tools/testrunner/testrunner_p.h3
-rw-r--r--src/tools/uploader/uploader.cpp3
14 files changed, 42 insertions, 28 deletions
diff --git a/src/tools/appman/appman.cpp b/src/tools/appman/appman.cpp
index 1a1eb28e..83554ebe 100644
--- a/src/tools/appman/appman.cpp
+++ b/src/tools/appman/appman.cpp
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:LGPL-QTAS$
** Commercial License Usage
@@ -68,8 +69,8 @@ Q_DECL_EXPORT int main(int argc, char *argv[])
#else
QCoreApplication::setApplicationName(qSL("ApplicationManager"));
#endif
- QCoreApplication::setOrganizationName(qSL("Pelagicore AG"));
- QCoreApplication::setOrganizationDomain(qSL("pelagicore.com"));
+ QCoreApplication::setOrganizationName(qSL("Luxoft Sweden AB"));
+ QCoreApplication::setOrganizationDomain(qSL("luxoft.com"));
QCoreApplication::setApplicationVersion(qSL(AM_VERSION));
Logging::initialize(argc, argv);
diff --git a/src/tools/controller/controller.cpp b/src/tools/controller/controller.cpp
index 1bd9eb52..e63e36d8 100644
--- a/src/tools/controller/controller.cpp
+++ b/src/tools/controller/controller.cpp
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT-QTAS$
** Commercial License Usage
@@ -231,13 +232,13 @@ private:
int main(int argc, char *argv[])
{
QCoreApplication::setApplicationName(qSL("ApplicationManager Controller"));
- QCoreApplication::setOrganizationName(qSL("Pelagicore AG"));
- QCoreApplication::setOrganizationDomain(qSL("pelagicore.com"));
+ QCoreApplication::setOrganizationName(qSL("Luxoft Sweden AB"));
+ QCoreApplication::setOrganizationDomain(qSL("luxoft.com"));
QCoreApplication::setApplicationVersion(qSL(AM_VERSION));
ThrowingApplication a(argc, argv);
- QString desc = qSL("\nPelagicore ApplicationManager controller tool\n\nAvailable commands are:\n");
+ QString desc = qSL("\nLuxoft ApplicationManager controller tool\n\nAvailable commands are:\n");
uint longestName = 0;
for (uint i = 0; i < sizeof(commandTable) / sizeof(commandTable[0]); ++i)
longestName = qMax(longestName, qstrlen(commandTable[i].name));
diff --git a/src/tools/controller/interrupthandler.cpp b/src/tools/controller/interrupthandler.cpp
index f14fe43a..032ea23a 100644
--- a/src/tools/controller/interrupthandler.cpp
+++ b/src/tools/controller/interrupthandler.cpp
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT-QTAS$
** Commercial License Usage
diff --git a/src/tools/controller/interrupthandler.h b/src/tools/controller/interrupthandler.h
index 1c3eae61..7674afe2 100644
--- a/src/tools/controller/interrupthandler.h
+++ b/src/tools/controller/interrupthandler.h
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT-QTAS$
** Commercial License Usage
diff --git a/src/tools/dumpqmltypes/dumpqmltypes.cpp b/src/tools/dumpqmltypes/dumpqmltypes.cpp
index 952ac265..c12bc0ae 100644
--- a/src/tools/dumpqmltypes/dumpqmltypes.cpp
+++ b/src/tools/dumpqmltypes/dumpqmltypes.cpp
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT-QTAS$
** Commercial License Usage
@@ -164,8 +165,8 @@ static QByteArray qmlTypeForMetaObect(const QMetaObject *mo, int level, bool ind
int main(int argc, char **argv)
{
QCoreApplication::setApplicationName(qSL("ApplicationManager qmltypes dumper"));
- QCoreApplication::setOrganizationName(qSL("Pelagicore AG"));
- QCoreApplication::setOrganizationDomain(qSL("pelagicore.com"));
+ QCoreApplication::setOrganizationName(qSL("Luxoft Sweden AB"));
+ QCoreApplication::setOrganizationDomain(qSL("luxoft.com"));
QCoreApplication::setApplicationVersion(qSL(AM_VERSION));
QCoreApplication a(argc, argv);
@@ -173,7 +174,7 @@ int main(int argc, char **argv)
QCommandLineParser clp;
const char *desc =
- "Pelagicore ApplicationManager qmltypes dumper"
+ "Luxoft ApplicationManager qmltypes dumper"
"\n\n"
"This tool is used to generate the qmltypes type information for all ApplicationManager\n"
"classes to get auto-completion in QtCreator.\n"
diff --git a/src/tools/launcher-qml/launcher-qml.cpp b/src/tools/launcher-qml/launcher-qml.cpp
index 5ae1253e..0a539bc1 100644
--- a/src/tools/launcher-qml/launcher-qml.cpp
+++ b/src/tools/launcher-qml/launcher-qml.cpp
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:LGPL-QTAS$
** Commercial License Usage
@@ -107,8 +108,8 @@ int main(int argc, char *argv[])
StartupTimer::instance()->checkpoint("entered main");
QCoreApplication::setApplicationName(qSL("ApplicationManager QML Launcher"));
- QCoreApplication::setOrganizationName(qSL("Pelagicore AG"));
- QCoreApplication::setOrganizationDomain(qSL("pelagicore.com"));
+ QCoreApplication::setOrganizationName(qSL("Luxoft Sweden AB"));
+ QCoreApplication::setOrganizationDomain(qSL("luxoft.com"));
QCoreApplication::setApplicationVersion(qSL(AM_VERSION));
if (qEnvironmentVariableIsSet("AM_NO_DLT_LOGGING"))
@@ -120,7 +121,7 @@ int main(int argc, char *argv[])
// As we don't know the app-id yet, we are registering a place holder so we are able to see
// something in the dlt logs if general errors occur.
- Logging::setDltApplicationId("PCLQ", "Pelagicore Application-Manager Launcher QML");
+ Logging::setDltApplicationId("PCLQ", "Luxoft Application-Manager Launcher QML");
Logging::setApplicationId("qml-launcher");
Logging::initialize();
diff --git a/src/tools/launcher-qml/launcher-qml_p.h b/src/tools/launcher-qml/launcher-qml_p.h
index ce8f8eab..15fb9ded 100644
--- a/src/tools/launcher-qml/launcher-qml_p.h
+++ b/src/tools/launcher-qml/launcher-qml_p.h
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:LGPL-QTAS$
** Commercial License Usage
diff --git a/src/tools/packager/packager.cpp b/src/tools/packager/packager.cpp
index 5324e66c..0f16532e 100644
--- a/src/tools/packager/packager.cpp
+++ b/src/tools/packager/packager.cpp
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT-QTAS$
** Commercial License Usage
@@ -89,8 +90,8 @@ int main(int argc, char *argv[])
Package::ensureCorrectLocale();
QCoreApplication::setApplicationName(qSL("ApplicationManager Packager"));
- QCoreApplication::setOrganizationName(qSL("Pelagicore AG"));
- QCoreApplication::setOrganizationDomain(qSL("pelagicore.com"));
+ QCoreApplication::setOrganizationName(qSL("Luxoft Sweden AB"));
+ QCoreApplication::setOrganizationDomain(qSL("luxoft.com"));
QCoreApplication::setApplicationVersion(qSL(AM_VERSION));
QCoreApplication a(argc, argv);
@@ -101,7 +102,7 @@ int main(int argc, char *argv[])
exit(2);
}
- QString desc = qSL("\nPelagicore ApplicationManager packaging tool\n\nAvailable commands are:\n");
+ QString desc = qSL("\nLuxoft ApplicationManager packaging tool\n\nAvailable commands are:\n");
uint longestName = 0;
for (uint i = 0; i < sizeof(commandTable) / sizeof(commandTable[0]); ++i)
longestName = qMax(longestName, qstrlen(commandTable[i].name));
diff --git a/src/tools/packager/packagingjob.cpp b/src/tools/packager/packagingjob.cpp
index 97e153fe..b2295d44 100644
--- a/src/tools/packager/packagingjob.cpp
+++ b/src/tools/packager/packagingjob.cpp
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT-QTAS$
** Commercial License Usage
diff --git a/src/tools/packager/packagingjob.h b/src/tools/packager/packagingjob.h
index 1c83c191..a46ac278 100644
--- a/src/tools/packager/packagingjob.h
+++ b/src/tools/packager/packagingjob.h
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT-QTAS$
** Commercial License Usage
diff --git a/src/tools/testrunner/testrunner.cpp b/src/tools/testrunner/testrunner.cpp
index 1b62388a..5eb77c7b 100644
--- a/src/tools/testrunner/testrunner.cpp
+++ b/src/tools/testrunner/testrunner.cpp
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:LGPL-QTAS$
** Commercial License Usage
diff --git a/src/tools/testrunner/testrunner.h b/src/tools/testrunner/testrunner.h
index d87da92f..5cc1a50d 100644
--- a/src/tools/testrunner/testrunner.h
+++ b/src/tools/testrunner/testrunner.h
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:LGPL-QTAS$
** Commercial License Usage
diff --git a/src/tools/testrunner/testrunner_p.h b/src/tools/testrunner/testrunner_p.h
index 01638871..4dfbedfd 100644
--- a/src/tools/testrunner/testrunner_p.h
+++ b/src/tools/testrunner/testrunner_p.h
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:LGPL-QTAS$
** Commercial License Usage
diff --git a/src/tools/uploader/uploader.cpp b/src/tools/uploader/uploader.cpp
index b8ee8f4a..0f991e9d 100644
--- a/src/tools/uploader/uploader.cpp
+++ b/src/tools/uploader/uploader.cpp
@@ -1,9 +1,10 @@
/****************************************************************************
**
+** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
-** This file is part of the Pelagicore Application Manager.
+** This file is part of the Luxoft Application Manager.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT-QTAS$
** Commercial License Usage