From 64f256afcd35245b22f1cf22eda32f9bc64d201e Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 26 Jun 2024 14:03:14 +0300 Subject: for #4438 - ICQ support for Dummy --- protocols/Dummy/src/dummy_proto.cpp | 2 +- protocols/Dummy/src/main.cpp | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'protocols') diff --git a/protocols/Dummy/src/dummy_proto.cpp b/protocols/Dummy/src/dummy_proto.cpp index 8e57c339f2..285cbe0f21 100644 --- a/protocols/Dummy/src/dummy_proto.cpp +++ b/protocols/Dummy/src/dummy_proto.cpp @@ -27,7 +27,7 @@ const ttemplate templates[] = { "EmLAN", "Nick", LPGEN("User name") }, { "Facebook", "ID", LPGEN("Facebook ID") }, { "GG", "UIN", LPGEN("Gadu-Gadu number") }, - { "ICQ", "UIN", LPGEN("User ID") }, + { "ICQ", "aimId", LPGEN("User ID") }, { "ICQCorp", "UIN", LPGEN("ICQ number") }, { "IRC", "Nick", LPGEN("Nickname") }, { "Jabber", "jid", LPGEN("JID") }, diff --git a/protocols/Dummy/src/main.cpp b/protocols/Dummy/src/main.cpp index 32d2bb682a..29a6cf6ef8 100644 --- a/protocols/Dummy/src/main.cpp +++ b/protocols/Dummy/src/main.cpp @@ -120,4 +120,13 @@ struct CMPluginOmegle : public ACCPROTOPLUGIN SetUniqueId("nick"); } } -static g_pluginOmegle; \ No newline at end of file +static g_pluginOmegle; + +struct CMPluginIcq : public ACCPROTOPLUGIN +{ + CMPluginIcq() : ACCPROTOPLUGIN("ICQ", pluginInfoEx) + { + SetUniqueId("aimId"); + } +} +static g_pluginIcq; -- cgit v1.2.3