diff options
-rw-r--r-- | protocols/Dummy/src/dummy_proto.cpp | 2 | ||||
-rw-r--r-- | protocols/Dummy/src/main.cpp | 11 |
2 files changed, 11 insertions, 2 deletions
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<CDummyProto> SetUniqueId("nick");
}
}
-static g_pluginOmegle;
\ No newline at end of file +static g_pluginOmegle;
+
+struct CMPluginIcq : public ACCPROTOPLUGIN<CDummyProto>
+{
+ CMPluginIcq() : ACCPROTOPLUGIN<CDummyProto>("ICQ", pluginInfoEx)
+ {
+ SetUniqueId("aimId");
+ }
+}
+static g_pluginIcq;
|