diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-26 09:19:20 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-27 07:26:35 +0100 |
commit | 30c953423a847e170ea26008535b79eb6f23e62e (patch) | |
tree | 123238a7710458dc7502f56b897bab96af3f3ff6 /vcl | |
parent | 851c80fdf6fb3509b53c6301dd0721be58c18719 (diff) |
remove unused QuickHelpFlags enum value
Change-Id: Ia40e882af0df396895a19dd34caa60461cdf6c12
Reviewed-on: https://gerrit.libreoffice.org/64059
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/help.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/vcl/source/app/help.cxx b/vcl/source/app/help.cxx index ab6767b39adb..c1634351f0ad 100644 --- a/vcl/source/app/help.cxx +++ b/vcl/source/app/help.cxx @@ -544,9 +544,7 @@ void ImplShowHelpWindow( vcl::Window* pParent, sal_uInt16 nHelpWinStyle, QuickHe return; sal_uInt64 nCurTime = tools::Time::GetSystemTicks(); - if ( ( ( nCurTime - pSVData->maHelpData.mnLastHelpHideTime ) < HelpSettings::GetTipDelay() ) - || ( nStyle & QuickHelpFlags::NoDelay ) - ) + if ( ( nCurTime - pSVData->maHelpData.mnLastHelpHideTime ) < HelpSettings::GetTipDelay() ) nDelayMode = HELPDELAY_NONE; pHelpWin = VclPtr<HelpTextWindow>::Create( pParent, rHelpText, nHelpWinStyle, nStyle ); |