summaryrefslogtreecommitdiff
path: root/plugins/VoiceService/src/services.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2022-08-31 20:55:33 +0300
committerGeorge Hazan <ghazan@miranda.im>2022-08-31 20:55:33 +0300
commitf787825fea601eaece7f20ad11a444c1766bcb2e (patch)
tree4d0017100d6a83ab97647ede9067c87d617b86ae /plugins/VoiceService/src/services.cpp
parenta018488fdc9fd3732e45c4b5f7667d2ed5ae23bf (diff)
code cleaning
Diffstat (limited to 'plugins/VoiceService/src/services.cpp')
-rw-r--r--plugins/VoiceService/src/services.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/VoiceService/src/services.cpp b/plugins/VoiceService/src/services.cpp
index e068d3dd6f..ad99378728 100644
--- a/plugins/VoiceService/src/services.cpp
+++ b/plugins/VoiceService/src/services.cpp
@@ -36,15 +36,15 @@ static INT_PTR CALLBACK DlgProcNewCall(HWND hwndDlg, UINT msg, WPARAM wParam, LP
VoiceCall *currentCall = GetTalkingCall();
if (currentCall == NULL) {
- mir_snwprintf(text, _countof(text), TranslateT("%s wants to start a voice call with you. What you want to do?"),
+ mir_snwprintf(text, TranslateT("%s wants to start a voice call with you. What you want to do?"),
call->displayName);
}
else if (currentCall->CanHold()) {
- mir_snwprintf(text, _countof(text), TranslateT("%s wants to start a voice call with you. What you want to do?\n\nIf you answer the call, the current call will be put on hold."),
+ mir_snwprintf(text, TranslateT("%s wants to start a voice call with you. What you want to do?\n\nIf you answer the call, the current call will be put on hold."),
call->displayName);
}
else {
- mir_snwprintf(text, _countof(text), TranslateT("%s wants to start a voice call with you. What you want to do?\n\nIf you answer the call, the current call will be dropped."),
+ mir_snwprintf(text, TranslateT("%s wants to start a voice call with you. What you want to do?\n\nIf you answer the call, the current call will be dropped."),
call->displayName);
}