diff options
Diffstat (limited to 'lib/logging.cpp')
-rw-r--r-- | lib/logging.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/logging.cpp b/lib/logging.cpp index a0c7f7bb..a7676c97 100644 --- a/lib/logging.cpp +++ b/lib/logging.cpp @@ -13,15 +13,16 @@ * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "logging.h" #if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0) -#define LOGGING_CATEGORY(Name, Id) Q_LOGGING_CATEGORY((Name), (Id), QtInfoMsg) +# define LOGGING_CATEGORY(Name, Id) \ + Q_LOGGING_CATEGORY((Name), (Id), QtInfoMsg) #else -#define LOGGING_CATEGORY(Name, Id) Q_LOGGING_CATEGORY((Name), (Id)) +# define LOGGING_CATEGORY(Name, Id) Q_LOGGING_CATEGORY((Name), (Id)) #endif // Use LOGGING_CATEGORY instead of Q_LOGGING_CATEGORY in the rest of the code |