diff options
author | George Hazan <george.hazan@gmail.com> | 2025-03-31 12:28:23 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-03-31 12:28:23 +0300 |
commit | 4747d2ed93f4f916c72d29a8dcd35425fcfea880 (patch) | |
tree | 3f470a499870eca74df4378bf013f9e2d3ca3ca5 /protocols/Teams/src/teams_endpoint.cpp | |
parent | 68ed297ee889cd21dbba8914f79dbef1a1e822e6 (diff) |
icons for Teams
Diffstat (limited to 'protocols/Teams/src/teams_endpoint.cpp')
-rw-r--r-- | protocols/Teams/src/teams_endpoint.cpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/protocols/Teams/src/teams_endpoint.cpp b/protocols/Teams/src/teams_endpoint.cpp index d0431cd3b2..047e41c5dd 100644 --- a/protocols/Teams/src/teams_endpoint.cpp +++ b/protocols/Teams/src/teams_endpoint.cpp @@ -17,30 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "stdafx.h" -void CTeamsProto::CheckConvert() -{ - m_szSkypename = getMStringA(SKYPE_SETTINGS_ID); - if (m_szSkypename.IsEmpty()) { - m_szSkypename = getMStringA(SKYPE_SETTINGS_LOGIN); - if (!m_szSkypename.IsEmpty()) { // old settings format, need to update all settings - m_szSkypename.Insert(0, "8:"); - setString(SKYPE_SETTINGS_ID, m_szSkypename); - - for (auto &hContact : AccContacts()) { - CMStringA id(ptrA(getUStringA(hContact, "Skypename"))); - if (!id.IsEmpty()) - setString(hContact, SKYPE_SETTINGS_ID, (isChatRoom(hContact)) ? "19:" + id : "8:" + id); - - ptrW wszNick(getWStringA(hContact, "Nick")); - if (wszNick == nullptr) - setUString(hContact, "Nick", id); - - delSetting(hContact, "Skypename"); - } - } - } -} - void CTeamsProto::ProcessTimer() { if (!IsOnline()) |