From 95130bea15eb7139702c76ff49edc33d4b3b492e Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Tue, 14 Jun 2005 17:43:45 +0000 Subject: [PATCH] Due to wxStringBase::CopyBeforeWrite() we need to resend modified 'multiline' text. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34648 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/tooltip.cpp | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/msw/tooltip.cpp b/src/msw/tooltip.cpp index a1f1b5c0a4..052fbca0b9 100644 --- a/src/msw/tooltip.cpp +++ b/src/msw/tooltip.cpp @@ -325,11 +325,19 @@ void wxToolTip::Add(WXHWND hWnd) SendTooltipMessage(GetToolTipCtrl(), TTM_SETMAXTIPWIDTH, 0, (void *)sz.cx); } + else #endif // comctl32.dll >= 4.70 + { + // replace the '\n's with spaces because otherwise they appear as + // unprintable characters in the tooltip string + m_text.Replace(_T("\n"), _T(" ")); + ti.lpszText = (wxChar *)m_text.c_str(); // const_cast - // replace the '\n's with spaces because otherwise they appear as - // unprintable characters in the tooltip string - m_text.Replace(_T("\n"), _T(" ")); + if ( !SendTooltipMessage(GetToolTipCtrl(), TTM_ADDTOOL, 0, &ti) ) + { + wxLogDebug(_T("Failed to create the tooltip '%s'"), m_text.c_str()); + } + } } } } -- 2.47.2