summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Behrens <holger.behrens@windriver.com>2015-02-20 12:32:26 +0100
committerHolger Behrens <holger.behrens@windriver.com>2015-02-20 12:32:26 +0100
commit8498a8c78efd2b54f5a6a02e1825f7256b27de3d (patch)
tree77fa531bdcf8b442ce4a6f479998f4dc76352d3a
parent00ea0ea0dcdbaedf8f5563bfbbe21b416ae645ba (diff)
downloadgenivi-demo-platform-hmi-8498a8c78efd2b54f5a6a02e1825f7256b27de3d.tar.gz
gdp-hmi-launcher: fixed typo in debug message
Signed-off-by: Holger Behrens <holger.behrens@windriver.com>
-rw-r--r--app/gdp-hmi-launcher/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/gdp-hmi-launcher/main.cpp b/app/gdp-hmi-launcher/main.cpp
index 50255ac..412b094 100644
--- a/app/gdp-hmi-launcher/main.cpp
+++ b/app/gdp-hmi-launcher/main.cpp
@@ -13,6 +13,7 @@
*
* List of changes:
* 06.Feb.2015, Holger Behrens, written based on template created by QtCreator
+ * 20.Feb.2015, Holger Behrens, fixed typo in debug message
*/
#include <QApplication>
@@ -29,7 +30,7 @@ int main(int argc, char *argv[])
setenv("QT_QPA_PLATFORM", "wayland", 1); // force to use wayland plugin
setenv("QT_WAYLAND_DISABLE_WINDOWDECORATION", "1", 1);
- sd_journal_print(LOG_DEBUG, "GDP: panel surface (id=%u)",
+ sd_journal_print(LOG_DEBUG, "GDP: launcher surface (id=%u)",
GDP_LAUNCHER_SURFACE_ID);
QObject *object;
@@ -44,7 +45,6 @@ int main(int argc, char *argv[])
&launcher, SLOT(hmiRequestOffSlot()));
view.setProperty("IVI-Surface-ID", GDP_LAUNCHER_SURFACE_ID);
- //view.setColor(QColor(Qt::transparent));
view.show();
return app.exec();
}