[MOS-245] Fix errant spaces

It appears in the past a major edit was made but had used a regex to
change some text which resulted in an errant space between the
enumuneration/struct/class name and the scope resolution operator.
These errant spaces have been removed.
This commit is contained in:
GravisZro
2022-02-23 09:55:54 -05:00
committed by Bartosz Cichocki
parent c7513c2c65
commit e59cd4036b
56 changed files with 243 additions and 249 deletions

View File

@@ -1,4 +1,4 @@
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
// Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#include "ThreadsTable.hpp"
@@ -111,10 +111,10 @@ std::vector<ThreadsTableRow> ThreadsTable::getLimitOffsetByField(uint32_t offset
case ThreadsTableFields::MsgCount:
fieldName = "msg_count";
break;
case ThreadsTableFields ::ContactID:
case ThreadsTableFields::ContactID:
fieldName = "contact_id";
break;
case ThreadsTableFields ::NumberID:
case ThreadsTableFields::NumberID:
fieldName = "number_id";
break;
default: