summaryrefslogtreecommitdiff
path: root/include/vbahelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:28:21 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:59 +0100
commit45979047abbd9da7a29401f298e8ef9ab58ad337 (patch)
tree139b904d88539d3cf0bc360f93781b49b6ac63e2 /include/vbahelper
parentbf8b32113fb2d26ca37b71e1e2bfc6f8ee77d0ea (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I6eb8949e3e14d82b52af9a2ba26d67bf1bd8e1a5
Diffstat (limited to 'include/vbahelper')
-rw-r--r--include/vbahelper/vbaaccesshelper.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vbahelper/vbaaccesshelper.hxx b/include/vbahelper/vbaaccesshelper.hxx
index 362c2b277248..5284f722fc28 100644
--- a/include/vbahelper/vbaaccesshelper.hxx
+++ b/include/vbahelper/vbaaccesshelper.hxx
@@ -55,7 +55,7 @@ namespace ooo
{
bool bRes( false );
const SfxMedium *pMedium = rDocShell.GetMedium();
- const SfxFilter *pFilt = pMedium ? pMedium->GetFilter() : NULL;
+ const SfxFilter *pFilt = pMedium ? pMedium->GetFilter() : nullptr;
if ( pFilt && pFilt->IsAlienFormat() )
bRes = pFilt->GetMimeType().equalsAscii( pMimeType );
return bRes;