summaryrefslogtreecommitdiff
path: root/formula/source/core/api/vectortoken.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:15:51 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:26 +0100
commite5b721a14c1c8e5261a70588b30353cbb5bd55c6 (patch)
tree4363d47845ddc271a032a5f18e402ddbe001891b /formula/source/core/api/vectortoken.cxx
parent11d365241808405483b79efd7879fa04bee8945e (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: Ib336ce9bc95f5c84dd6412ff3c098e68c5b0f4ff
Diffstat (limited to 'formula/source/core/api/vectortoken.cxx')
-rw-r--r--formula/source/core/api/vectortoken.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/formula/source/core/api/vectortoken.cxx b/formula/source/core/api/vectortoken.cxx
index 99f7decd06fc..d5129aeb9f57 100644
--- a/formula/source/core/api/vectortoken.cxx
+++ b/formula/source/core/api/vectortoken.cxx
@@ -12,22 +12,22 @@
namespace formula {
VectorRefArray::VectorRefArray() :
- mpNumericArray(NULL),
- mpStringArray(NULL),
+ mpNumericArray(nullptr),
+ mpStringArray(nullptr),
mbValid(true) {}
VectorRefArray::VectorRefArray( InitInvalid ) :
- mpNumericArray(NULL),
- mpStringArray(NULL),
+ mpNumericArray(nullptr),
+ mpStringArray(nullptr),
mbValid(false) {}
VectorRefArray::VectorRefArray( const double* pArray ) :
mpNumericArray(pArray),
- mpStringArray(NULL),
+ mpStringArray(nullptr),
mbValid(true) {}
VectorRefArray::VectorRefArray( rtl_uString** pArray ) :
- mpNumericArray(NULL),
+ mpNumericArray(nullptr),
mpStringArray(pArray),
mbValid(true) {}