From 28615229f7e2667ea5632293ca13f8ffdaaa9700 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Enar=20V=C3=A4ikene?= Date: Wed, 18 May 2011 09:58:42 +0300 Subject: [PATCH] Added extra info message right before running the application. --- src/main/GUI/main.cpp | 1 + src/main/GUI/version.h | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/GUI/main.cpp b/src/main/GUI/main.cpp index 45c5043..2a3caa0 100644 --- a/src/main/GUI/main.cpp +++ b/src/main/GUI/main.cpp @@ -408,6 +408,7 @@ int main(int argc, char ** argv) // return 1; // Run the application + EVAF_INFO("Running %s", VER_MODULE_NAME_STR); rval = app.exec(); quit = rval != Common::iApp::RC_Restart; diff --git a/src/main/GUI/version.h b/src/main/GUI/version.h index ff98d7a..2eb2db8 100644 --- a/src/main/GUI/version.h +++ b/src/main/GUI/version.h @@ -25,12 +25,12 @@ /** * Module/library version number in the form major,minor,release,build */ -#define VER_FILE_VERSION 0,1,1,1 +#define VER_FILE_VERSION 0,1,1,2 /** * Module/library version number in the string format (shall end with \0) */ -#define VER_FILE_VERSION_STR "0.1.1.1\0" +#define VER_FILE_VERSION_STR "0.1.1.2\0" /** * Module/library name (shall end with \0) -- 2.45.2