diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-07 17:50:35 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-07 17:50:35 +0300 |
commit | 2f8f28146defdc5e44f611cb35d76a00e3a5ad87 (patch) | |
tree | 577e3e9ecc15d8bd133f071b6c7d22f3bc8ada5c /plugins/BuddyPounce/src | |
parent | 284358c4d7ec6c8ba67c26db905226a264cf788c (diff) |
fixes #3815 (BuddyPounce: уменьшить число пробелов)
Diffstat (limited to 'plugins/BuddyPounce/src')
-rw-r--r-- | plugins/BuddyPounce/src/dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/BuddyPounce/src/dialog.cpp b/plugins/BuddyPounce/src/dialog.cpp index 19bb83e048..c8c3ad1057 100644 --- a/plugins/BuddyPounce/src/dialog.cpp +++ b/plugins/BuddyPounce/src/dialog.cpp @@ -42,7 +42,7 @@ bool CBuddyPounceBasicDlg::OnApply() void CBuddyPounceBasicDlg::onChanged_Message(CCtrlEdit *)
{
int length = GetWindowTextLength(edtMessage.GetHwnd());
- CMStringW str(FORMAT, TranslateT("The Message (%d Characters)"), length);
+ CMStringW str(FORMAT, TranslateT("The Message (%d Characters)"), length);
SetDlgItemTextW(m_hwnd, GRP_MSG, str);
}
|