diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-09-30 09:50:53 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-10-01 08:32:40 +0200 |
commit | 955ccb669c60cc29918c784d9c801ab1ac54fc22 (patch) | |
tree | 4e1e77d8f60ac652e5cf01a9fb2a13b2d53821d4 /winaccessibility | |
parent | 9a3d2258420c4c1cc322b4f1317317dcd7c0b1a1 (diff) |
loplugin:nullptr (clang-cl)
Change-Id: I47ac4ff7d82eb5732ad54e3b42c18c3665c83b82
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122845
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'winaccessibility')
-rw-r--r-- | winaccessibility/inc/AccObjectManagerAgent.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winaccessibility/inc/AccObjectManagerAgent.hxx b/winaccessibility/inc/AccObjectManagerAgent.hxx index e4e87be3dc3c..579a785b41bb 100644 --- a/winaccessibility/inc/AccObjectManagerAgent.hxx +++ b/winaccessibility/inc/AccObjectManagerAgent.hxx @@ -49,7 +49,7 @@ public: virtual bool InsertAccObj(css::accessibility::XAccessible* pXAcc, css::accessibility::XAccessible* pParentXAcc, - HWND hWnd = 0); + HWND hWnd = nullptr); virtual void GetIAccessibleFromResID(long childID,IMAccessible**); virtual bool GetIAccessibleFromXAccessible(css::accessibility::XAccessible* pXAcc, IAccessible** ppIA); @@ -59,7 +59,7 @@ public: bool NotifyAccEvent(short pEvent = 0, css::accessibility::XAccessible* pXAcc = nullptr); bool InsertChildrenAccObj(css::accessibility::XAccessible* pXAcc, - HWND hWnd = 0); + HWND hWnd = nullptr); void DeleteChildrenAccObj( css::accessibility::XAccessible* pXAcc ); void DecreaseState( css::accessibility::XAccessible* pXAcc,unsigned short pState ); |