diff options
author | George Hazan <george.hazan@gmail.com> | 2025-05-07 14:49:22 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-05-07 14:49:28 +0300 |
commit | 6a96639dfa6bb763251b100a91f2f9e10430769c (patch) | |
tree | 0d4c92ff36784ff30f9445f1cfa05f2b7620cf1b | |
parent | 8989e8e42ea1ad1cd5942f116406d3f04ff30134 (diff) |
fixes #4899 completely
-rw-r--r-- | plugins/AVS/avs.vcxproj | 1 | ||||
-rw-r--r-- | plugins/AVS/avs.vcxproj.filters | 3 | ||||
-rw-r--r-- | protocols/JabberG/src/jabber_icolib.cpp | 10 |
3 files changed, 6 insertions, 8 deletions
diff --git a/plugins/AVS/avs.vcxproj b/plugins/AVS/avs.vcxproj index 86e399c534..b7f200cddd 100644 --- a/plugins/AVS/avs.vcxproj +++ b/plugins/AVS/avs.vcxproj @@ -39,6 +39,7 @@ <ClCompile Include="src\utils.cpp" />
<ClCompile Include="src\userInfo.cpp" />
<ClCompile Include="src\contact_ava.cpp" />
+ <ClInclude Include="..\..\include\m_avatars.h" />
<ClInclude Include="src\acc.h" />
<ClInclude Include="src\image_utils.h" />
<ClInclude Include="src\poll.h" />
diff --git a/plugins/AVS/avs.vcxproj.filters b/plugins/AVS/avs.vcxproj.filters index 715fd8e0bf..3ecc4dbdc1 100644 --- a/plugins/AVS/avs.vcxproj.filters +++ b/plugins/AVS/avs.vcxproj.filters @@ -55,6 +55,9 @@ <ClInclude Include="src\version.h">
<Filter>Header Files</Filter>
</ClInclude>
+ <ClInclude Include="..\..\include\m_avatars.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\avs.rc">
diff --git a/protocols/JabberG/src/jabber_icolib.cpp b/protocols/JabberG/src/jabber_icolib.cpp index eb9d405f7b..583d49bbeb 100644 --- a/protocols/JabberG/src/jabber_icolib.cpp +++ b/protocols/JabberG/src/jabber_icolib.cpp @@ -39,20 +39,15 @@ HIMAGELIST hAdvancedStatusIcon = nullptr; struct
{
- char *mask;
- char* proto;
+ char *mask, *proto;
}
static TransportProtoTable[] =
{
- { "|*icq*|jit*", "ICQ" },
- { "mrim*", "MRA" },
-
- //request #3094
+ // request #3094
{ "|gg*|gadu*", "GaduGadu" },
{ "tv*", "TV" },
{ "dict*", "Dictionary" },
{ "weather*", "Weather" },
- { "skype*", "Skype" },
{ "sms*", "SMS" },
{ "smtp*", "SMTP" },
@@ -64,7 +59,6 @@ static TransportProtoTable[] = { "disk*", "Jabber Disk" },
{ "irc*", "IRC" },
{ "rss*", "RSS" },
- { "tlen*", "Tlen" },
// German social networks
{ "studivz*", "StudiVZ" },
|