summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Behrens <holger.behrens@windriver.com>2015-02-13 12:10:30 +0100
committerHolger Behrens <holger.behrens@windriver.com>2015-02-13 12:10:30 +0100
commit6e3624761131760f5f313fa7b577fafa23131028 (patch)
tree4eb5e190836a9e48870033debf42f9fde4221f62
parentde92447771fc45689adb7f4764fac4e170a03dc7 (diff)
downloadgenivi-demo-platform-hmi-6e3624761131760f5f313fa7b577fafa23131028.tar.gz
qml-example: fix typo in file header
Signed-off-by: Holger Behrens <holger.behrens@windriver.com>
-rw-r--r--app/qml-example/main.cpp2
-rw-r--r--app/qml-example/main.h18
-rw-r--r--app/qml-example/main.qml2
-rw-r--r--app/qml-example/qml-example.pro5
4 files changed, 24 insertions, 3 deletions
diff --git a/app/qml-example/main.cpp b/app/qml-example/main.cpp
index 2cec80a..9414896 100644
--- a/app/qml-example/main.cpp
+++ b/app/qml-example/main.cpp
@@ -3,7 +3,7 @@
*
* Copyright (C) 2015 GENIVI Alliance
*
- * This file is part of GENIVI AudioManager PoC.
+ * This file is part of GENIVI Demo Platform HMI.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License (MPL), v. 2.0. If a copy of the MPL was not distributed with this
diff --git a/app/qml-example/main.h b/app/qml-example/main.h
index a090b07..dd988a3 100644
--- a/app/qml-example/main.h
+++ b/app/qml-example/main.h
@@ -1,3 +1,21 @@
+/**
+ * SPDX license identifier: MPL-2.0
+ *
+ * Copyright (C) 2015, GENIVI Alliance
+ *
+ * This file is part of GENIVI Demo Platform HMI.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License (MPL), v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * For further information see http://www.genivi.org/.
+ *
+ * List of changes:
+ * 29.Jan.2014, Holger Behrens, written based on Qt5 documentation
+ * http://doc.qt.io/qt-5/qtqml-cppintegration-interactqmlfromcpp.html
+ */
+
#ifndef MAIN_H
#define MAIN_H
diff --git a/app/qml-example/main.qml b/app/qml-example/main.qml
index 1ceb19d..7377732 100644
--- a/app/qml-example/main.qml
+++ b/app/qml-example/main.qml
@@ -3,7 +3,7 @@
*
* Copyright (C) 2015, GENIVI Alliance
*
- * This file is part of GENIVI AudioManager PoC.
+ * This file is part of GENIVI Demo Platform HMI.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License (MPL), v. 2.0. If a copy of the MPL was not distributed with this
diff --git a/app/qml-example/qml-example.pro b/app/qml-example/qml-example.pro
index a286755..ed8079c 100644
--- a/app/qml-example/qml-example.pro
+++ b/app/qml-example/qml-example.pro
@@ -2,7 +2,7 @@
#
# Copyright (C) 2015, GENIVI Alliance
#
-# This file is part of GENIVI AudioManager PoC.
+# This file is part of GENIVI Demo Platform HMI.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License (MPL), v. 2.0. If a copy of the MPL was not distributed with this
@@ -29,5 +29,8 @@ LIBS += -lsystemd
target.path = /usr/bin
+# enable C standard as published in 2011 as ISO/IEC 9899:2011 (known as C11)
+CONFIG += c++11
+
# Default rules for deployment.
include(deployment.pri)