]> vaikene.ee Git - evaf/commitdiff
Fixed compiler warning for unhandled Common::iLogger::Count value.
authorEnar Väikene <enar@vaikene.net>
Wed, 19 Oct 2011 07:43:03 +0000 (10:43 +0300)
committerEnar Väikene <enar@vaikene.net>
Wed, 19 Oct 2011 07:43:03 +0000 (10:43 +0300)
src/main/CLI/main.cpp
src/main/CLI/version.h
src/main/GUI/main.cpp
src/main/GUI/version.h

index 51d5f517adae79db24a1734e6241a7a8cb53da68..4e8fe7e0b606115889ed12b8fdec27cd84b48bfd 100644 (file)
@@ -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;
                 }
             }
index 5d439742c67cc53871965cd3d02511a9af41f812..25d61e25c22814d019785fe06648b026f321b60e 100644 (file)
 /**
  * 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)
index 30f1500923177dd8da0545a2d1e18b582c310078..c30e7adba2eb2ae617bc49eedb0d5b417e10df2d 100644 (file)
@@ -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;
                 }
             }
index 2a6c047020365392d86c8fca5477e759af64ff86..b593649d94a22359fdf930cb51db811d2450c592 100644 (file)
 /**
  * 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)