mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-13 07:35:41 +08:00
using namespace in header removed, rectified resulting changes
* using namespace in context_runtime.h * in same step also fixed some other using namespace issues
This commit is contained in:
@@ -26,9 +26,9 @@ namespace BlackCore
|
||||
~CContext() {}
|
||||
|
||||
//! Log category
|
||||
static const CLogCategoryList &getLogCategories()
|
||||
static const BlackMisc::CLogCategoryList &getLogCategories()
|
||||
{
|
||||
static const CLogCategoryList cats { CLogCategory::context() };
|
||||
static const BlackMisc::CLogCategoryList cats { BlackMisc::CLogCategory::context() };
|
||||
return cats;
|
||||
}
|
||||
|
||||
@@ -131,7 +131,7 @@ namespace BlackCore
|
||||
//! Empty context called
|
||||
void logEmptyContextWarning(const QString &functionName) const
|
||||
{
|
||||
CLogMessage(this, CLogCategory::contextSlot()).warning("Empty context called, details: %1") << functionName;
|
||||
BlackMisc::CLogMessage(this, BlackMisc::CLogCategory::contextSlot()).warning("Empty context called, details: %1") << functionName;
|
||||
}
|
||||
|
||||
//! Standard message when status message is returned in empty context
|
||||
|
||||
Reference in New Issue
Block a user