https://issues.apache.org/ooo/show_bug.cgi?id=42424
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #6 from [email protected] --- patch (http://cgit.freedesktop.org/libreoffice/core/diff/?id=675f723f83d110bec4a9a4c5fa09ad965d240d2a): diff --git a/vcl/source/app/help.cxx b/vcl/source/app/help.cxx index c57cb74..7a3f174 100644 --- a/vcl/source/app/help.cxx +++ b/vcl/source/app/help.cxx @@ -52,6 +52,8 @@ #define HELPDELAY_SHORT 2 #define HELPDELAY_NONE 3 +#define HELPTEXTMAXLEN 150 + // ======================================================================= Help::Help() @@ -358,7 +360,7 @@ HelpTextWindow::~HelpTextWindow() void HelpTextWindow::SetHelpText( const String& rHelpText ) { maHelpText = rHelpText; - if ( mnHelpWinStyle == HELPWINSTYLE_QUICK ) + if ( mnHelpWinStyle == HELPWINSTYLE_QUICK && maHelpText.Len() < HELPTEXTMAXLEN) { Size aSize; aSize.Height() = GetTextHeight(); @@ -420,7 +422,7 @@ void HelpTextWindow::Paint( const Rectangle& ) } // paint text - if ( mnHelpWinStyle == HELPWINSTYLE_QUICK ) + if ( mnHelpWinStyle == HELPWINSTYLE_QUICK && maHelpText.Len() < HELPTEXTMAXLEN) { if ( mnStyle & QUICKHELP_CTRLTEXT ) DrawCtrlText( maTextRect.TopLeft(), maHelpText ); generated by cgit v0.9.0.2-2-gbebe at 2012-09-07 12:44:19 (GMT) -- You are receiving this mail because: You are on the CC list for the bug.
