From: Enar Väikene Date: Wed, 19 Oct 2011 12:56:47 +0000 (+0300) Subject: Unified signal signatures so that the eVaf namespace is not included in the signature. X-Git-Url: https://vaikene.ee/gitweb/gitweb.cgi?p=evaf;a=commitdiff_plain;h=8d713d5c7982d5ed6daa131bcc976147c32268d5 Unified signal signatures so that the eVaf namespace is not included in the signature. --- 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)