fix readability-identifier-length

This commit is contained in:
wmayer
2023-11-14 20:15:02 +01:00
parent 57a333e2b2
commit 9c7d00ffcb
38 changed files with 281 additions and 270 deletions

View File

@@ -176,9 +176,9 @@ ConsoleSingleton::~ConsoleSingleton()
/**
* sets the console in a special mode
*/
void ConsoleSingleton::SetConsoleMode(ConsoleMode m)
void ConsoleSingleton::SetConsoleMode(ConsoleMode mode)
{
if (m & Verbose) {
if (mode & Verbose) {
_bVerbose = true;
}
}
@@ -186,9 +186,9 @@ void ConsoleSingleton::SetConsoleMode(ConsoleMode m)
/**
* unsets the console from a special mode
*/
void ConsoleSingleton::UnsetConsoleMode(ConsoleMode m)
void ConsoleSingleton::UnsetConsoleMode(ConsoleMode mode)
{
if (m & Verbose) {
if (mode & Verbose) {
_bVerbose = false;
}
}
@@ -211,47 +211,47 @@ void ConsoleSingleton::UnsetConsoleMode(ConsoleMode m)
* switches off warnings and error messages and restore the state before the modification.
* If the observer \a sObs doesn't exist then nothing happens.
*/
ConsoleMsgFlags ConsoleSingleton::SetEnabledMsgType(const char* sObs, ConsoleMsgFlags type, bool b)
ConsoleMsgFlags ConsoleSingleton::SetEnabledMsgType(const char* sObs, ConsoleMsgFlags type, bool on)
{
ILogger* pObs = Get(sObs);
if (pObs) {
ConsoleMsgFlags flags = 0;
if (type & MsgType_Err) {
if (pObs->bErr != b) {
if (pObs->bErr != on) {
flags |= MsgType_Err;
}
pObs->bErr = b;
pObs->bErr = on;
}
if (type & MsgType_Wrn) {
if (pObs->bWrn != b) {
if (pObs->bWrn != on) {
flags |= MsgType_Wrn;
}
pObs->bWrn = b;
pObs->bWrn = on;
}
if (type & MsgType_Txt) {
if (pObs->bMsg != b) {
if (pObs->bMsg != on) {
flags |= MsgType_Txt;
}
pObs->bMsg = b;
pObs->bMsg = on;
}
if (type & MsgType_Log) {
if (pObs->bLog != b) {
if (pObs->bLog != on) {
flags |= MsgType_Log;
}
pObs->bLog = b;
pObs->bLog = on;
}
if (type & MsgType_Critical) {
if (pObs->bCritical != b) {
if (pObs->bCritical != on) {
flags |= MsgType_Critical;
}
pObs->bCritical = b;
pObs->bCritical = on;
}
if (type & MsgType_Notification) {
if (pObs->bNotification != b) {
if (pObs->bNotification != on) {
flags |= MsgType_Notification;
}
pObs->bNotification = b;
pObs->bNotification = on;
}
return flags;