diff options
author | dartraiden <wowemuh@gmail.com> | 2024-04-19 01:46:37 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2024-04-19 01:46:58 +0300 |
commit | 0335de2d5f5621c70db4eaa0abf97ec0d3fa7ead (patch) | |
tree | 5af216373dc34d778fad216440f43322cb6c7efe /protocols/Dummy/src | |
parent | af77768bbbf345a045db18ef27d770cc2ebb5f50 (diff) |
Dummy: sort presets alphabetically
Diffstat (limited to 'protocols/Dummy/src')
-rw-r--r-- | protocols/Dummy/src/dummy_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Dummy/src/dummy_proto.cpp b/protocols/Dummy/src/dummy_proto.cpp index a6f8c58d6d..8e57c339f2 100644 --- a/protocols/Dummy/src/dummy_proto.cpp +++ b/protocols/Dummy/src/dummy_proto.cpp @@ -40,6 +40,7 @@ const ttemplate templates[] = { "Skype (Classic)", "Username", LPGEN("Skype name") },
{ "Skype (Web)", "Username", LPGEN("Skype name") },
{ "Steam", "SteamID", LPGEN("Steam ID") },
+ { "Telegram", "id", LPGEN("Telegram ID") },
{ "Tlen", "jid", LPGEN("Tlen login") },
{ "Tox", "ToxID", LPGEN("Tox ID") },
{ "Twitter", "Username", LPGEN("Username") },
@@ -47,7 +48,6 @@ const ttemplate templates[] = { "WhatsApp", "ID", LPGEN("WhatsApp ID") },
{ "XFire", "Username", LPGEN("Username") },
{ "Yahoo", "yahoo_id", LPGEN("ID") },
- { "Telegram", "id", LPGEN("Telegram ID") },
};
void FillTemplateCombo(HWND hwndDlg, int iCtrlId)
|