summaryrefslogtreecommitdiff
path: root/include/com/sun/star/uno/Reference.h
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:12:56 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:20 +0100
commit4730b58d9989512ed25790768ba78decfde7d667 (patch)
tree2d53902a514a0f69a70dc0bc7bebe6d39290e1be /include/com/sun/star/uno/Reference.h
parent311fd06af4e297fa748684a61edd3ee38845c485 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I17eb40b2923793280ea220e519f97563c8490a19
Diffstat (limited to 'include/com/sun/star/uno/Reference.h')
-rw-r--r--include/com/sun/star/uno/Reference.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/com/sun/star/uno/Reference.h b/include/com/sun/star/uno/Reference.h
index a4bdf7c6fbba..58009a3d7da9 100644
--- a/include/com/sun/star/uno/Reference.h
+++ b/include/com/sun/star/uno/Reference.h
@@ -90,7 +90,7 @@ public:
@return true if reference acquires an interface, i.e. true if it is not null
*/
inline bool SAL_CALL is() const
- { return (0 != _pInterface); }
+ { return (NULL != _pInterface); }
/** Equality operator: compares two interfaces
Checks if both references are null or refer to the same object.