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

@ -57,7 +57,7 @@ const auto SupportCommands = base::flat_set<Command>{
const auto CommandByName = base::flat_map<QString, Command>{
{ qsl("close_telegram") , Command::Close },
{ qsl("lock_telegram") , Command::Lock },
{ qsl("minimize_telegram"), Command::Minimize },
{ qsl("minimize_telegram") , Command::Minimize },
{ qsl("quit_telegram") , Command::Quit },
{ qsl("media_play") , Command::MediaPlay },
@ -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,13 +87,12 @@ 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.
{ qsl("message") , Command::JustSendMessage },
{ qsl("message_silently") , Command::SendSilentMessage },
{ qsl("message_scheduled"), Command::ScheduleMessage },
{ qsl("message_scheduled") , Command::ScheduleMessage },
//
};
@ -106,7 +104,7 @@ const auto CommandNames = base::flat_map<Command, QString>{
{ Command::MediaPlay , qsl("media_play") },
{ Command::MediaPause , qsl("media_pause") },
{ Command::MediaPlayPause, qsl("media_playpause") },
{ Command::MediaPlayPause , qsl("media_playpause") },
{ Command::MediaStop , qsl("media_stop") },
{ Command::MediaPrevious , qsl("media_previous") },
{ Command::MediaNext , qsl("media_next") },
@ -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") },
};