diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-10-04 11:09:19 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-10-04 11:09:19 +0200 |
commit | 36960825acd93777c431e71aded96e31a86335c0 (patch) | |
tree | 3dfca69218b14b15684255a5d2d147a6a43dc09e | |
parent | 4f5b39b949d1748683de1553ec4998b7f389990f (diff) |
loplugin:nullptr (--enable-qt5)
Change-Id: I85e310a4e2cf8e9f726d8d7c6ac8bbb399f0cd7c
-rw-r--r-- | vcl/qt5/Qt5AccessibleWidget.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qt5/Qt5AccessibleWidget.cxx b/vcl/qt5/Qt5AccessibleWidget.cxx index 0e783dcb3808..f85823a7e168 100644 --- a/vcl/qt5/Qt5AccessibleWidget.cxx +++ b/vcl/qt5/Qt5AccessibleWidget.cxx @@ -83,7 +83,7 @@ QAccessible::Relation lcl_matchUnoRelation(short relationType) case AccessibleRelationType::DESCRIBED_BY: default: SAL_WARN("vcl.qt5", "Unmatched relation: " << relationType); - return 0x0; + return nullptr; } } |