diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-05-05 12:11:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-05-05 14:39:58 +0200 |
commit | 2361718a34ee4ef47901846cb35eea4552bca46b (patch) | |
tree | 37e0e2da41cda45476209209e99c8b734131100c /include/comphelper | |
parent | b10417eb1e5a4a6959e7fc1cdd9819e5b09d39a4 (diff) |
tdf#155149 Crash when exiting cell edit mode
regression from
commit 2dc240a82646fc23c673a6fd5a29ade934dd5b67
Author: Noel Grandin <noel.grandin@collabora.co.uk>
Date: Tue May 2 14:47:43 2023 +0200
improve AccessibleEventNotifier::addEvent
and
commit 3b7db802731826b6cc3b55100470b0c61c1f2dfa
Author: Noel Grandin <noel.grandin@collabora.co.uk>
Date: Thu May 4 10:06:14 2023 +0200
tdf#105404 [API CHANGE] add index to accessiblity change event
(*) Send better index hints
(*) Error check the index hints better
(*) Convert asserts to warnings and fall back to old code when
index hint is wrong.
Change-Id: I8e752fc26e729c9c8926beb2c7b196f5418a147e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151419
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/accessiblecomponenthelper.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/comphelper/accessiblecomponenthelper.hxx b/include/comphelper/accessiblecomponenthelper.hxx index 2a840ea9e36e..328d61316b15 100644 --- a/include/comphelper/accessiblecomponenthelper.hxx +++ b/include/comphelper/accessiblecomponenthelper.hxx @@ -128,7 +128,8 @@ namespace comphelper void NotifyAccessibleEvent( const sal_Int16 _nEventId, const css::uno::Any& _rOldValue, - const css::uno::Any& _rNewValue + const css::uno::Any& _rNewValue, + sal_Int32 nIndexHint = -1 ); // life time control |