diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2023-08-07 12:07:54 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2023-08-08 08:18:13 +0200 |
commit | 0724cb04e7f20ad01fa544a0d75ae58ab0e9cd8a (patch) | |
tree | dc8d13f937ad718b2672c0ec02614e41fb8af56d /winaccessibility/inc | |
parent | b45481d6895e196177dfd9ef4df6b29dc32a8347 (diff) |
wina11y: Align param order with other methods
Switch the param order in `AccObjectManagerAgent::NotifyAccEvent`
to be consistent with all of its other methods that take the
`XAccessible*` first, and also with
`AccObjectWinManager::NotifyAccEvent` that is called by the
method.
This is also in preparation of dropping
AccObjectManagerAgent altogether.
Change-Id: I83d331176971cc728524266d87939f33acd375f0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155438
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'winaccessibility/inc')
-rw-r--r-- | winaccessibility/inc/AccObjectManagerAgent.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winaccessibility/inc/AccObjectManagerAgent.hxx b/winaccessibility/inc/AccObjectManagerAgent.hxx index 064de74505a7..8ff8d407dbe8 100644 --- a/winaccessibility/inc/AccObjectManagerAgent.hxx +++ b/winaccessibility/inc/AccObjectManagerAgent.hxx @@ -57,7 +57,7 @@ public: virtual void DeleteAccObj( css::accessibility::XAccessible* pXAcc ); virtual IMAccessible* GetIMAccByXAcc(css::accessibility::XAccessible* pXAcc); - bool NotifyAccEvent(UnoMSAAEvent eEvent, css::accessibility::XAccessible* pXAcc); + bool NotifyAccEvent(css::accessibility::XAccessible* pXAcc, UnoMSAAEvent eEvent); bool InsertChildrenAccObj(css::accessibility::XAccessible* pXAcc, HWND hWnd = nullptr); |