diff options
author | George Hazan <ghazan@miranda.im> | 2023-04-17 20:19:16 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-04-17 20:19:16 +0300 |
commit | 84f1eac98d46db881cc5c1cb09939bdae67224a9 (patch) | |
tree | deb3c30f812b68362eb77dc9a3ed4223356f2291 | |
parent | f43396cbff99cc7cc9410f12e55783ad12d1d2f7 (diff) |
useless string removed
-rw-r--r-- | src/mir_app/src/srmm_log_rtf.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mir_app/src/srmm_log_rtf.cpp b/src/mir_app/src/srmm_log_rtf.cpp index 512f4d3344..80cbe4662d 100644 --- a/src/mir_app/src/srmm_log_rtf.cpp +++ b/src/mir_app/src/srmm_log_rtf.cpp @@ -138,8 +138,7 @@ wchar_t* CRtfLogWindow::GetSelection() void CRtfLogWindow::InsertFileLink(CMStringA &buf, MEVENT hEvent, const DB::FILE_BLOB &blob)
{
- AppendUnicodeString(buf, TranslateT("Offline file"));
- buf.Append(" {\\field{\\*\\fldinst HYPERLINK \"");
+ buf.Append("{\\field{\\*\\fldinst HYPERLINK \"");
buf.AppendFormat("ofile:%ul", hEvent);
buf.Append("\"}{\\fldrslt{\\ul ");
AppendUnicodeString(buf, blob.getName());
|