X-Git-Url: https://vaikene.ee/gitweb/pswgen09.html?a=blobdiff_plain;f=src%2Flibs%2FCommon%2Filogger.h;h=4d865c9ee6ed6d741dc2ede6eb8645402c56e811;hb=cf45ef016ce162419f74f9165c4267a184714956;hp=71dbd14cd9a34c9133449f2923ea04ec62f7b4aa;hpb=0957525838e501a4609a15b8d7a765da43362025;p=evaf diff --git a/src/libs/Common/ilogger.h b/src/libs/Common/ilogger.h index 71dbd14..4d865c9 100644 --- a/src/libs/Common/ilogger.h +++ b/src/libs/Common/ilogger.h @@ -3,7 +3,7 @@ * @brief Logger interface for eVaf * @author Enar Vaikene * - * Copyright (c) 2011 Enar Vaikene + * Copyright (c) 2011-2012 Enar Vaikene * * This file is part of the eVaf C++ cross-platform application development framework. * @@ -93,6 +93,8 @@ public: * * Use the setDefaultSource() function to change the default source name. If not set, then * uses the default source name "common". + * + * Changing the name of the default source resets any other settings set for the default source. */ virtual void setDefaultSource(QString const & source) = 0; @@ -248,19 +250,6 @@ signals: } // namespace eVaf::Common } // namespace eVaf -/** - * Outputs info messages - * @param msg The format string - * @param ... Variable list of arguments - * - * The qInfo() function adds info messages to the Qt family of functions qDebug(), qWarning(), qError() and qFatal(). - */ -void COMMON_EXPORT qInfo(char const * const msg, ...) -#ifdef Q_OS_LINUX - __attribute__((format(printf, 1, 2))) -#endif -; - /** * Macro for fatal error messages. *