[Libreoffice-commits] core.git: accessibility/source
Baran Aytas (via logerrit)
logerrit at kemper.freedesktop.org
Mon Sep 6 05:48:49 UTC 2021
accessibility/source/standard/accessiblemenuitemcomponent.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit d383a70c46e0dcbe74d6765cd5a394428c198917
Author: Baran Aytas <barannaytas at gmail.com>
AuthorDate: Wed Sep 1 01:09:17 2021 +0300
Commit: Michael Weghorn <m.weghorn at posteo.de>
CommitDate: Mon Sep 6 07:48:16 2021 +0200
tdf#114441: Convert use of sal_uLong to better integer types
Change-Id: I15dac18e25d9a0c49a3c1e7c08407d1d2b23467a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121410
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn at posteo.de>
diff --git a/accessibility/source/standard/accessiblemenuitemcomponent.cxx b/accessibility/source/standard/accessiblemenuitemcomponent.cxx
index 4b0707291eff..e61c7452e9ec 100644
--- a/accessibility/source/standard/accessiblemenuitemcomponent.cxx
+++ b/accessibility/source/standard/accessiblemenuitemcomponent.cxx
@@ -131,7 +131,7 @@ void OAccessibleMenuItemComponent::Click()
// that the popup menus are executed synchronously.
AllSettings aSettings = pWindow->GetSettings();
MouseSettings aMouseSettings = aSettings.GetMouseSettings();
- sal_uLong nDelay = aMouseSettings.GetMenuDelay();
+ sal_Int32 nDelay = aMouseSettings.GetMenuDelay();
aMouseSettings.SetMenuDelay( 0 );
aSettings.SetMouseSettings( aMouseSettings );
pWindow->SetSettings( aSettings );
More information about the Libreoffice-commits
mailing list