Remove whitespaces, fix spaces

This commit is contained in:
Aokromes 2020-05-01 12:44:05 +02:00 committed by John Preston
parent db5d599052
commit ae64747489
1 changed files with 57 additions and 61 deletions

View File

@ -75,7 +75,6 @@ const auto CommandByName = base::flat_map<QString, Command>{
{ qsl("last_chat") , Command::ChatLast },
{ qsl("self_chat") , Command::ChatSelf },
{ qsl("previous_folder") , Command::FolderPrevious },
{ qsl("next_folder") , Command::FolderNext },
{ qsl("all_chats") , Command::ShowAllChats },
@ -88,7 +87,6 @@ const auto CommandByName = base::flat_map<QString, Command>{
{ qsl("folder6") , Command::ShowFolder6 },
{ qsl("last_folder") , Command::ShowFolderLast },
{ qsl("show_archive") , Command::ShowArchive },
// Shortcuts that have no default values.
@ -119,7 +117,6 @@ const auto CommandNames = base::flat_map<Command, QString>{
{ Command::ChatLast , qsl("last_chat") },
{ Command::ChatSelf , qsl("self_chat") },
{ Command::FolderPrevious , qsl("previous_folder") },
{ Command::FolderNext , qsl("next_folder") },
{ Command::ShowAllChats , qsl("all_chats") },
@ -132,7 +129,6 @@ const auto CommandNames = base::flat_map<Command, QString>{
{ Command::ShowFolder6 , qsl("folder6") },
{ Command::ShowFolderLast , qsl("last_folder") },
{ Command::ShowArchive , qsl("show_archive") },
};