mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-18 12:04:03 -04:00
[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:
committed by
Bartosz Cichocki
parent
c7513c2c65
commit
e59cd4036b
@@ -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 "NotesTable.hpp"
|
||||
@@ -92,7 +92,7 @@ std::vector<NotesTableRow> NotesTable::getLimitOffsetByField(std::uint32_t offse
|
||||
case NotesTableFields::Date:
|
||||
fieldName = "date";
|
||||
break;
|
||||
case NotesTableFields ::Snippet:
|
||||
case NotesTableFields::Snippet:
|
||||
fieldName = "snippet";
|
||||
break;
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user