summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--protocols/VKontakte/src/misc.cpp2
-rw-r--r--protocols/VKontakte/src/vk_chats.cpp2
-rw-r--r--protocols/VKontakte/src/vk_thread.cpp6
3 files changed, 5 insertions, 5 deletions
diff --git a/protocols/VKontakte/src/misc.cpp b/protocols/VKontakte/src/misc.cpp
index eb2f59380b..494ef63183 100644
--- a/protocols/VKontakte/src/misc.cpp
+++ b/protocols/VKontakte/src/misc.cpp
@@ -1418,5 +1418,5 @@ void CVkProto::ShowCaptchaInBrowser(HBITMAP hBitmap)
fclose(pFile);
wszHTMLPath = L"file://" + wszHTMLPath;
- Utils_OpenUrlT(wszHTMLPath);
+ Utils_OpenUrlW(wszHTMLPath);
} \ No newline at end of file
diff --git a/protocols/VKontakte/src/vk_chats.cpp b/protocols/VKontakte/src/vk_chats.cpp
index b165fdf5d3..ff8cee7677 100644
--- a/protocols/VKontakte/src/vk_chats.cpp
+++ b/protocols/VKontakte/src/vk_chats.cpp
@@ -782,7 +782,7 @@ void CVkProto::NickMenuHook(CVkChatInfo *cc, GCHOOK *gch)
case IDM_VISIT_PROFILE:
hContact = FindUser(cu->m_uid);
if (hContact == NULL)
- Utils_OpenUrlT(CMString(FORMAT, L"https://vk.com/id%d", cu->m_uid));
+ Utils_OpenUrlW(CMString(FORMAT, L"https://vk.com/id%d", cu->m_uid));
else
SvcVisitProfile(hContact, 0);
break;
diff --git a/protocols/VKontakte/src/vk_thread.cpp b/protocols/VKontakte/src/vk_thread.cpp
index 24d68d33c9..05cf3f6daa 100644
--- a/protocols/VKontakte/src/vk_thread.cpp
+++ b/protocols/VKontakte/src/vk_thread.cpp
@@ -814,7 +814,7 @@ INT_PTR __cdecl CVkProto::SvcOpenBroadcast(WPARAM hContact, LPARAM)
CMString wszAudio(ptrW(db_get_wsa(hContact, m_szModuleName, "AudioUrl")));
if (!wszAudio.IsEmpty())
- Utils_OpenUrlT(wszAudio);
+ Utils_OpenUrlW(wszAudio);
return 0;
}
@@ -825,7 +825,7 @@ INT_PTR __cdecl CVkProto::SvcVisitProfile(WPARAM hContact, LPARAM)
if (isChatRoom(hContact)) {
ptrW wszHomepage(db_get_wsa(hContact, m_szModuleName, "Homepage"));
if(!IsEmpty(wszHomepage))
- Utils_OpenUrlT(wszHomepage);
+ Utils_OpenUrlW(wszHomepage);
return 0;
}
@@ -838,6 +838,6 @@ INT_PTR __cdecl CVkProto::SvcVisitProfile(WPARAM hContact, LPARAM)
else
wszUrl.AppendFormat(L"id%i", userID);
- Utils_OpenUrlT(wszUrl);
+ Utils_OpenUrlW(wszUrl);
return 0;
} \ No newline at end of file