diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-09-07 01:06:45 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-09-07 01:06:45 -0400 |
commit | c8d7cb6bff57c26ab67faef1a15c2c9bd4a4f616 (patch) | |
tree | 574b4d0eedf5746b9716bc43e37a083485b3ecb8 /svl/source | |
parent | cc2b19b992229af9d6bcfb5b43a545c418f8f9b5 (diff) |
Hopefully this will fix the build breakage on Mac.
Diffstat (limited to 'svl/source')
-rw-r--r-- | svl/source/inc/poolio.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/inc/poolio.hxx b/svl/source/inc/poolio.hxx index d1260322d409..1515779d33ed 100644 --- a/svl/source/inc/poolio.hxx +++ b/svl/source/inc/poolio.hxx @@ -99,7 +99,7 @@ struct SfxItemPool_Impl bool mbPersistentRefCounts; SfxItemPool_Impl( SfxItemPool* pMaster, const UniString& rName, sal_uInt16 nStart, sal_uInt16 nEnd ) - : maPoolItems(nEnd - nStart + 1, NULL) + : maPoolItems(nEnd - nStart + 1, static_cast<SfxPoolItemArray_Impl*>(NULL)) , aName(rName) , ppPoolDefaults(new SfxPoolItem* [nEnd - nStart + 1]) , ppStaticDefaults(0) |