summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@gmail.com>2022-08-13 12:25:15 +0200
committerGitHub <noreply@github.com>2022-08-13 12:25:15 +0200
commitb9c7df217208302b971f86a60046f5bd4d8590fe (patch)
tree22002fe89b7c4934e91620b3f92feb19e17cbe0a /protocols
parent64b512f8547d30a774da7c63ee536551b70fce67 (diff)
Jabber
Corrected a typo
Diffstat (limited to 'protocols')
-rw-r--r--protocols/JabberG/src/jabber_voip.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_voip.cpp b/protocols/JabberG/src/jabber_voip.cpp
index 9843bbfce9..71426c95ee 100644
--- a/protocols/JabberG/src/jabber_voip.cpp
+++ b/protocols/JabberG/src/jabber_voip.cpp
@@ -508,7 +508,7 @@ bool CJabberProto::VOIPCallAccept(const TiXmlElement *jingleNode, const char *fr
return false;
CMStringW question(FORMAT, TranslateT("Accept call from %S?\r\nIt will disclose IP address to the peer and his server"), from);
- if (MessageBoxW(0, question, TranslateT("Incomig call"), MB_YESNO | MB_ICONQUESTION) != IDYES)
+ if (MessageBoxW(0, question, TranslateT("Incoming call"), MB_YESNO | MB_ICONQUESTION) != IDYES)
return false;
m_isOutgoing = false;