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 --- WindowManager/src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'WindowManager/src') diff --git a/WindowManager/src/main.cpp b/WindowManager/src/main.cpp index f3f5a71..9c6e791 100644 --- a/WindowManager/src/main.cpp +++ b/WindowManager/src/main.cpp @@ -27,6 +27,8 @@ int main(int argc, char *argv[]) QCoreApplication::setApplicationName("WindowManager"); QCoreApplication::setApplicationVersion("0.3.0"); + qDebug("%s, v%s", QCoreApplication::applicationName().toStdString().c_str(), QCoreApplication::applicationVersion().toStdString().c_str()); + qDBusRegisterMetaType(); qDBusRegisterMetaType >(); qDBusRegisterMetaType(); -- cgit 1.2.3-korg