Issue #77 getLogCategories returns a simple QStringList instead of our own class

This commit is contained in:
Mat Sutcliffe
2020-10-28 16:48:31 +00:00
parent 05d28017e7
commit 63e8de8f00
156 changed files with 862 additions and 833 deletions

View File

@@ -192,9 +192,9 @@ namespace BlackMisc
}
}
const CLogCategoryList &CModelCaches::getLogCategories()
const QStringList &CModelCaches::getLogCategories()
{
static const CLogCategoryList l({ CLogCategory::modelCache() });
static const QStringList l({ CLogCategories::modelCache() });
return l;
}
@@ -411,9 +411,9 @@ namespace BlackMisc
}
}
const CLogCategoryList &CModelSetCaches::getLogCategories()
const QStringList &CModelSetCaches::getLogCategories()
{
static const CLogCategoryList l({ CLogCategory::modelSetCache() });
static const QStringList l({ CLogCategories::modelSetCache() });
return l;
}