From e4bcb978b8042617a80cbf1ab74a3251a4caf1d8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Enar=20V=C3=A4ikene?= Date: Wed, 19 Oct 2011 10:43:03 +0300 Subject: [PATCH] Fixed compiler warning for unhandled Common::iLogger::Count value. --- src/main/CLI/main.cpp | 2 +- src/main/CLI/version.h | 4 ++-- src/main/GUI/main.cpp | 2 +- src/main/GUI/version.h | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/CLI/main.cpp b/src/main/CLI/main.cpp index 51d5f51..4e8fe7e 100644 --- a/src/main/CLI/main.cpp +++ b/src/main/CLI/main.cpp @@ -178,7 +178,7 @@ bool Application::processCommandLine(int argc, char ** argv) case Common::iLogger::Info: consoleSeverityLevel = Common::iLogger::Debug; break; - case Common::iLogger::Debug: + default: break; } } diff --git a/src/main/CLI/version.h b/src/main/CLI/version.h index 5d43974..25d61e2 100644 --- a/src/main/CLI/version.h +++ b/src/main/CLI/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) diff --git a/src/main/GUI/main.cpp b/src/main/GUI/main.cpp index 30f1500..c30e7ad 100644 --- a/src/main/GUI/main.cpp +++ b/src/main/GUI/main.cpp @@ -234,7 +234,7 @@ bool Application::processCommandLine(int argc, char ** argv) case Common::iLogger::Info: Internal::ConsoleSeverityLevel = Common::iLogger::Debug; break; - case Common::iLogger::Debug: + default: break; } } diff --git a/src/main/GUI/version.h b/src/main/GUI/version.h index 2a6c047..b593649 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,3 +#define VER_FILE_VERSION 0,1,1,4 /** * Module/library version number in the string format (shall end with \0) */ -#define VER_FILE_VERSION_STR "0.1.1.3\0" +#define VER_FILE_VERSION_STR "0.1.1.4\0" /** * Module/library name (shall end with \0) -- 2.45.0