summaryrefslogtreecommitdiff
path: root/protocols/Skype
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2013-07-03 20:30:01 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2013-07-03 20:30:01 +0000
commit9b9b6ea2b79c853008c10f6cae8a4f840fad5b43 (patch)
tree513f8b875ef51963a797f67160d99175e115b5da /protocols/Skype
parentaa312e59cd0065e20ffdf78cd49811ba0520c0bd (diff)
- Skype: translation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@5224 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype')
-rw-r--r--protocols/Skype/src/skype_blocked.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Skype/src/skype_blocked.cpp b/protocols/Skype/src/skype_blocked.cpp
index e9d4461b59..c9e885008c 100644
--- a/protocols/Skype/src/skype_blocked.cpp
+++ b/protocols/Skype/src/skype_blocked.cpp
@@ -81,10 +81,10 @@ INT_PTR CALLBACK CSkypeProto::SkypeBlockProc(HWND hwndDlg, UINT msg, WPARAM wPar
::mir_sntprintf(
text,
SIZEOF(text),
- TranslateT("Are you sure you want to block \"%s\" (%s)? They won't be able to contact you and won't appear in your Contact List."),
+ ::TranslateT("Are you sure you want to block \"%s\" (%s)? They won't be able to contact you and won't appear in your Contact List."),
nick,
ptrW(::db_get_wsa(param->hContact, param->ppro->m_szModuleName, SKYPE_SETTINGS_SID)));
- ::SetDlgItemText(hwndDlg, IDC_MESSAGE, text),
+ ::SetDlgItemText(hwndDlg, IDC_MESSAGE, text);
::Utils_RestoreWindowPosition(hwndDlg, 0, MODULE, "BlockWindow");
}