From 8d713d5c7982d5ed6daa131bcc976147c32268d5 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Enar=20V=C3=A4ikene?= <enar@vaikene.net>
Date: Wed, 19 Oct 2011 15:56:47 +0300
Subject: [PATCH] Unified signal signatures so that the eVaf namespace is not
 included in the signature.

---
 src/libs/Common/ilogger.h  | 2 +-
 src/libs/Common/logger.cpp | 2 +-
 src/libs/Common/version.h  | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/libs/Common/ilogger.h b/src/libs/Common/ilogger.h
index a9617eb..71dbd14 100644
--- a/src/libs/Common/ilogger.h
+++ b/src/libs/Common/ilogger.h
@@ -241,7 +241,7 @@ signals:
      * your receiver to this signal if you want to add your own message handling. For example,
      * use this signal to show messages in a log window etc.
      */
-    void loggerEvent(eVaf::Common::iLogger::Severity severity, QString const & text, QString const & source, QString const & where);
+    void loggerEvent(Common::iLogger::Severity severity, QString const & text, QString const & source, QString const & where);
 
 };
 
diff --git a/src/libs/Common/logger.cpp b/src/libs/Common/logger.cpp
index c7a50dd..01d5687 100644
--- a/src/libs/Common/logger.cpp
+++ b/src/libs/Common/logger.cpp
@@ -160,7 +160,7 @@ Logger::Logger()
 Logger::~Logger()
 {
     // Disconnect any potential receivers from this object
-    disconnect(this, SIGNAL(loggerEvent(eVaf::Common::iLogger::Severity,QString,QString,QString)), 0, 0);
+    disconnect(this, SIGNAL(loggerEvent(Common::iLogger::Severity,QString,QString,QString)), 0, 0);
 
     // Destroy the worker thread
     if (mWorker) {
diff --git a/src/libs/Common/version.h b/src/libs/Common/version.h
index 2a178f3..b99636f 100644
--- a/src/libs/Common/version.h
+++ b/src/libs/Common/version.h
@@ -25,12 +25,12 @@
 /**
  * Module/library version number in the form major,minor,release,build
  */
-#define VER_FILE_VERSION                0,1,2,4
+#define VER_FILE_VERSION                0,1,2,5
 
 /**
  * Module/library version number in the string format (shall end with \0)
  */
-#define VER_FILE_VERSION_STR            "0.1.2.4\0"
+#define VER_FILE_VERSION_STR            "0.1.2.5\0"
 
 /**
  * Module/library name (shall end with \0)
-- 
2.49.0