diff options
Diffstat (limited to 'plugins/TabSRMM/src')
-rw-r--r-- | plugins/TabSRMM/src/msgdlgutils.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/msgdlgutils.cpp b/plugins/TabSRMM/src/msgdlgutils.cpp index cbafe51bb0..fab938ac8b 100644 --- a/plugins/TabSRMM/src/msgdlgutils.cpp +++ b/plugins/TabSRMM/src/msgdlgutils.cpp @@ -1007,7 +1007,8 @@ BOOL CTabBaseDlg::DoRtfToTags(CMStringW &pszText) const if (isChat())
res.Append(L"%%");
else
- res.AppendChar(*p++);
+ res.AppendChar(*p);
+ p++;
break;
default: // other text that should not be touched
|