From 72f295447bfebc83d049b11bb5fb50df37f6cb41 Mon Sep 17 00:00:00 2001 From: Mathew Sutcliffe Date: Thu, 29 Oct 2015 21:48:33 +0000 Subject: [PATCH] refs #489 Predefined log category changes. --- src/blackmisc/logcategory.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/blackmisc/logcategory.h b/src/blackmisc/logcategory.h index 54b95b0ca..2e37c3f59 100644 --- a/src/blackmisc/logcategory.h +++ b/src/blackmisc/logcategory.h @@ -43,13 +43,6 @@ namespace BlackMisc return cat; } - //! Settings updates - static const CLogCategory &settingsUpdate() - { - static const CLogCategory cat { "swift.settings.update" }; - return cat; - } - //! Contexts static const CLogCategory &context() { @@ -71,6 +64,13 @@ namespace BlackMisc return cat; } + //! Downloading + static const CLogCategory &download() + { + static const CLogCategory cat { "swift.download" }; + return cat; + } + //! All predefined special categories static const QList &allSpecialCategories() { @@ -78,10 +78,10 @@ namespace BlackMisc { uncategorized(), validation(), - settingsUpdate(), context(), contextSlot(), - guiComponent() + guiComponent(), + download() }; return cats; }