diff options
author | RMN <rmn@miranda-ng.org> | 2014-09-15 10:17:52 +0000 |
---|---|---|
committer | RMN <rmn@miranda-ng.org> | 2014-09-15 10:17:52 +0000 |
commit | e1747d22bf5b6010f06edd633f452679c31a3944 (patch) | |
tree | 1ef00275206b8eb4e823ba94249e5a3aaa034fc6 /protocols/WhatsApp | |
parent | 325fac82a5d207a54bdc8dcda32c39bbf7355e86 (diff) |
resources: comma in Conditional Clauses with "if":
if the subordinate clause ("if clause") comes first, a comma should be used to separate it from the main clause,
while no comma is needed if the "if clause" follows the main one.
git-svn-id: http://svn.miranda-ng.org/main/trunk@10450 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp')
-rw-r--r-- | protocols/WhatsApp/src/dialogs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/WhatsApp/src/dialogs.cpp b/protocols/WhatsApp/src/dialogs.cpp index 6a909346a8..8f64d55894 100644 --- a/protocols/WhatsApp/src/dialogs.cpp +++ b/protocols/WhatsApp/src/dialogs.cpp @@ -86,7 +86,7 @@ INT_PTR CALLBACK WhatsAppAccountProc(HWND hwnd, UINT message, WPARAM wparam, LPA if (!pw.empty())
{
proto->setString(WHATSAPP_KEY_PASS, pw.c_str());
- MessageBox(NULL, TranslateT("Your password has been set automatically.\nIf you change your password manually you may lose it and need to request a new code!"), PRODUCT_NAME, MB_ICONWARNING);
+ MessageBox(NULL, TranslateT("Your password has been set automatically.\nIf you change your password manually, you may lose it and need to request a new code!"), PRODUCT_NAME, MB_ICONWARNING);
}
}
}
|