summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-11 21:45:01 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-11 21:45:01 +0100
commit69e0e16e0e50074127c6a4bef1f45dd6323b0164 (patch)
tree5de17c9065f874214d66e50e13ce2994d515833d /vcl/source
parent5e725b448fcb0f732b2b492d7452b9304de0bbce (diff)
gridsort: +QUICKHELP_NO_DELAY
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/app/help.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/vcl/source/app/help.cxx b/vcl/source/app/help.cxx
index 37e7917d5e78..46f5e2132e5c 100644
--- a/vcl/source/app/help.cxx
+++ b/vcl/source/app/help.cxx
@@ -629,7 +629,9 @@ void ImplShowHelpWindow( Window* pParent, USHORT nHelpWinStyle, USHORT nStyle,
if ( !pHelpWin && rHelpText.Len() )
{
ULONG nCurTime = Time::GetSystemTicks();
- if( (nCurTime - pSVData->maHelpData.mnLastHelpHideTime) < pParent->GetSettings().GetHelpSettings().GetTipDelay() )
+ if ( ( ( nCurTime - pSVData->maHelpData.mnLastHelpHideTime ) < pParent->GetSettings().GetHelpSettings().GetTipDelay() )
+ || ( ( nStyle & QUICKHELP_NO_DELAY ) != 0 )
+ )
nDelayMode = HELPDELAY_NONE;
DBG_ASSERT( !pHelpWin, "Noch ein HelpWin ?!" );