From 26e4df7c02fddf30c5728a97cbf87e7fb301dbe8 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 6 Nov 2023 21:05:58 +0300 Subject: =?UTF-8?q?fixes=20#3840=20(Jabber:=20=D0=BA=D1=80=D0=B0=D0=BA?= =?UTF-8?q?=D0=BE=D0=B7=D1=8F=D0=B1=D1=80=D1=8B=20=D0=B2=20=D0=B7=D0=B0?= =?UTF-8?q?=D0=B3=D0=BE=D0=BB=D0=BE=D0=B2=D0=BA=D0=B5=20=D0=BE=D0=BA=D0=BD?= =?UTF-8?q?=D0=B0=20"=D0=9E=D1=82=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20=D0=B7=D0=B0=D0=BC=D0=B5=D1=82=D0=BA=D1=83")?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protocols/JabberG/src/jabber_notes.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'protocols/JabberG') diff --git a/protocols/JabberG/src/jabber_notes.cpp b/protocols/JabberG/src/jabber_notes.cpp index ac6272f5b7..5f9df77a6f 100644 --- a/protocols/JabberG/src/jabber_notes.cpp +++ b/protocols/JabberG/src/jabber_notes.cpp @@ -176,11 +176,12 @@ public: Window_SetIcon_IcoLib(m_hwnd, g_plugin.getIconHandle(IDI_NOTES)); if (m_fnProcess) { + Utf2T wszFrom(m_pNote->GetFrom()); CMStringW buf; if (m_fnProcess == &CJabberProto::ProcessIncomingNote) - buf.Format(TranslateT("Incoming note from %s"), m_pNote->GetFrom()); + buf.Format(TranslateT("Incoming note from %s"), wszFrom.get()); else - buf.Format(TranslateT("Send note to %s"), m_pNote->GetFrom()); + buf.Format(TranslateT("Send note to %s"), wszFrom.get()); SetWindowText(m_hwnd, buf); } -- cgit v1.2.3