diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-08-04 15:47:53 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-08-04 23:28:17 +0200 |
commit | 48a3d6b85e3c2858c281d5f258fcf2120ca84265 (patch) | |
tree | 1f3d2b1f80d4033038b1c9ad1dbbb5ce18f3ff43 /winaccessibility/source | |
parent | 5eb43d74e1aea8eebb67e2d9e98335a1c5d81248 (diff) |
loplugin:simplifypointertobool (clang-cl)
Change-Id: I6512e6e4217ef9084c74e46e3b4f1e8defbd1bec
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100108
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'winaccessibility/source')
-rw-r--r-- | winaccessibility/source/service/AccObject.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winaccessibility/source/service/AccObject.cxx b/winaccessibility/source/service/AccObject.cxx index f6460522838d..0763b4520a9c 100644 --- a/winaccessibility/source/service/AccObject.cxx +++ b/winaccessibility/source/service/AccObject.cxx @@ -398,7 +398,7 @@ void AccObject::SetValue( Any pAny ) case HEADING: case TABLE_CELL: - if(pRText.get()) + if(pRText) { val = pRText->getText(); } |