From d1b31445c6f4a53627a025b43afb24603bc12dc2 Mon Sep 17 00:00:00 2001 From: MikalaiR Date: Wed, 6 May 2015 13:22:54 +0000 Subject: SkypeWeb: Rework writing calls info to db. Sync fix. git-svn-id: http://svn.miranda-ng.org/main/trunk@13460 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/SkypeWeb/src/skype_trouter.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'protocols/SkypeWeb/src/skype_trouter.cpp') diff --git a/protocols/SkypeWeb/src/skype_trouter.cpp b/protocols/SkypeWeb/src/skype_trouter.cpp index adb9ec3df1..21a250a193 100644 --- a/protocols/SkypeWeb/src/skype_trouter.cpp +++ b/protocols/SkypeWeb/src/skype_trouter.cpp @@ -20,14 +20,14 @@ void CSkypeProto::OnCreateTrouter(const NETLIBHTTPREQUEST *response) { if (response == NULL || response->pData == NULL) { - ShowNotification(_A2T(m_szModuleName), _T("Failed establish a TRouter connection.")); + ShowNotification(_A2T(m_szModuleName), TranslateT("Failed establish a TRouter connection.")); return; } JSONROOT root(response->pData); if (root == NULL) { - ShowNotification(_A2T(m_szModuleName), _T("Failed establish a TRouter connection.")); + ShowNotification(_A2T(m_szModuleName), TranslateT("Failed establish a TRouter connection.")); return; } @@ -39,7 +39,7 @@ void CSkypeProto::OnCreateTrouter(const NETLIBHTTPREQUEST *response) if (ccid == NULL || connId == NULL || instance == NULL || socketio == NULL || url == NULL) { - ShowNotification(_A2T(m_szModuleName), _T("Failed establish a TRouter connection.")); + ShowNotification(_A2T(m_szModuleName), TranslateT("Failed establish a TRouter connection.")); return; } @@ -56,7 +56,7 @@ void CSkypeProto::OnTrouterPoliciesCreated(const NETLIBHTTPREQUEST *response) { if (response == NULL || response->pData == NULL) { - ShowNotification(_A2T(m_szModuleName), _T("Failed establish a TRouter connection.")); + ShowNotification(_A2T(m_szModuleName), TranslateT("Failed establish a TRouter connection.")); return; } @@ -64,7 +64,7 @@ void CSkypeProto::OnTrouterPoliciesCreated(const NETLIBHTTPREQUEST *response) if (root == NULL) { - ShowNotification(_A2T(m_szModuleName), _T("Failed establish a TRouter connection.")); + ShowNotification(_A2T(m_szModuleName), TranslateT("Failed establish a TRouter connection.")); return; } @@ -74,7 +74,7 @@ void CSkypeProto::OnTrouterPoliciesCreated(const NETLIBHTTPREQUEST *response) if (st == NULL || se == NULL || sig == NULL) { - ShowNotification(_A2T(m_szModuleName), _T("Failed establish a TRouter connection.")); + ShowNotification(_A2T(m_szModuleName), TranslateT("Failed establish a TRouter connection.")); return; } @@ -98,7 +98,7 @@ void CSkypeProto::OnGetTrouter(const NETLIBHTTPREQUEST *response, void *p) { if (response == NULL || response->pData == NULL) { - ShowNotification(_A2T(m_szModuleName), _T("Failed establish a TRouter connection.")); + ShowNotification(_A2T(m_szModuleName), TranslateT("Failed establish a TRouter connection.")); return; } bool isHealth = (bool)p; -- cgit v1.2.3