summaryrefslogtreecommitdiff
path: root/winaccessibility
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-08-04 15:47:53 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-08-04 23:28:17 +0200
commit48a3d6b85e3c2858c281d5f258fcf2120ca84265 (patch)
tree1f3d2b1f80d4033038b1c9ad1dbbb5ce18f3ff43 /winaccessibility
parent5eb43d74e1aea8eebb67e2d9e98335a1c5d81248 (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')
-rw-r--r--winaccessibility/source/service/AccObject.cxx2
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();
}