summaryrefslogtreecommitdiff
path: root/include/oox/dump/oledumper.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:20:17 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:32 +0100
commit8d12f43bb3668f4fdfcef0bd149d8b023e312e18 (patch)
tree989292510ee579777678940fcb5c93d75c3925dd /include/oox/dump/oledumper.hxx
parent1ddbbfdda834965c861a67e275ab58ff4d1f0bf9 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I62a20b440064aca6f102e61cb3984bb95e739a4f
Diffstat (limited to 'include/oox/dump/oledumper.hxx')
-rw-r--r--include/oox/dump/oledumper.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/oox/dump/oledumper.hxx b/include/oox/dump/oledumper.hxx
index e3940fe57d3f..ea9604dcc218 100644
--- a/include/oox/dump/oledumper.hxx
+++ b/include/oox/dump/oledumper.hxx
@@ -344,8 +344,8 @@ protected:
void dumpPosProperty();
void dumpSizeProperty();
- void dumpGuidProperty( OUString* pValue = 0 );
- void dumpStringProperty( OUString* pValue = 0 );
+ void dumpGuidProperty( OUString* pValue = nullptr );
+ void dumpStringProperty( OUString* pValue = nullptr );
void dumpStringArrayProperty();
void dumpStreamProperty();
@@ -369,7 +369,7 @@ private:
OUString maItemName;
sal_uInt32 mnDataSize;
OUString* mpItemValue;
- explicit LargeProperty( LargePropertyType ePropType, const String& rItemName, sal_uInt32 nDataSize, OUString* pItemValue = 0 ) :
+ explicit LargeProperty( LargePropertyType ePropType, const String& rItemName, sal_uInt32 nDataSize, OUString* pItemValue = nullptr ) :
mePropType( ePropType ), maItemName( rItemName ), mnDataSize( nDataSize ), mpItemValue( pItemValue ) {}
};
typedef ::std::vector< LargeProperty > LargePropertyVector;
@@ -547,11 +547,11 @@ public:
const ObjectBase& rParent,
const BinaryInputStreamRef& rxStrm,
const OUString& rSysFileName,
- const OUString* pProgId = 0 );
+ const OUString* pProgId = nullptr );
explicit FormControlStreamObject(
const OutputObjectBase& rParent,
const BinaryInputStreamRef& rxStrm,
- const OUString* pProgId = 0 );
+ const OUString* pProgId = nullptr );
protected:
virtual void implDump() override;