summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-09-18 10:10:45 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-09-18 10:11:41 +0200
commitad7a2511ed956295bec0391c0dd2cc329970a079 (patch)
tree34f69f2889e5e117bbadc0bd7ce9096dc598b8d8 /extensions
parent230f67d958be212ab496c66d3a7ed96ca498f241 (diff)
use nullptr instead of reinterpret_cast<void*>(0)
Change-Id: I1b424fd2fbf524c36746e9e39300595328979937
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/dbpilots/controlwizard.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/dbpilots/controlwizard.cxx b/extensions/source/dbpilots/controlwizard.cxx
index b5e4e289da51..3b7928cb3556 100644
--- a/extensions/source/dbpilots/controlwizard.cxx
+++ b/extensions/source/dbpilots/controlwizard.cxx
@@ -159,7 +159,7 @@ namespace dbp
for (;pItems < pEnd; ++pItems)
{
nPos = _rList.InsertEntry(*pItems);
- _rList.SetEntryData(nPos, reinterpret_cast<void*>(0));
+ _rList.SetEntryData(nPos, nullptr);
}
}