From 4e34fd88f65f8c1cd094ed24bd62d2c7f5418080 Mon Sep 17 00:00:00 2001 From: "Bocklage, Jens" Date: Wed, 26 Oct 2016 13:18:37 +0200 Subject: All apps print their app name and version on launch. Signed-off-by: Bocklage, Jens --- HomeScreenAppFrameworkBinderTizen/src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'HomeScreenAppFrameworkBinderTizen/src/main.cpp') diff --git a/HomeScreenAppFrameworkBinderTizen/src/main.cpp b/HomeScreenAppFrameworkBinderTizen/src/main.cpp index f2168d0..f1e1af1 100644 --- a/HomeScreenAppFrameworkBinderTizen/src/main.cpp +++ b/HomeScreenAppFrameworkBinderTizen/src/main.cpp @@ -29,6 +29,8 @@ int main(int argc, char *argv[]) QCoreApplication::setApplicationName("HomeScreenAppFrameworkBinderTizen"); QCoreApplication::setApplicationVersion("0.3.0"); + qDebug("%s, v%s", QCoreApplication::applicationName().toStdString().c_str(), QCoreApplication::applicationVersion().toStdString().c_str()); + HomeScreenAppFrameworkBinderTizen *tdp = new HomeScreenAppFrameworkBinderTizen(); return a.exec(); -- cgit 1.2.3-korg