summaryrefslogtreecommitdiff
path: root/sd/source/filter/eppt/eppt.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-20 11:56:07 +0200
committerNoel Grandin <noel@peralex.com>2015-08-20 13:52:17 +0200
commitb0f205a33da99da3c8b4a376eecf395bbbc2df3b (patch)
tree01c09eb1e4cdc08b4f5f81a7371f57683cb174b6 /sd/source/filter/eppt/eppt.cxx
parent808063ebe7d410eb7e370be1f5d8047377137dfb (diff)
loplugin:defaultparams
Change-Id: I52a79d3e84c832622fa4be32856d7dbb496b4d67
Diffstat (limited to 'sd/source/filter/eppt/eppt.cxx')
-rw-r--r--sd/source/filter/eppt/eppt.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/filter/eppt/eppt.cxx b/sd/source/filter/eppt/eppt.cxx
index 436970ae86f1..50ac9395091d 100644
--- a/sd/source/filter/eppt/eppt.cxx
+++ b/sd/source/filter/eppt/eppt.cxx
@@ -578,7 +578,7 @@ void PPTWriter::ImplCreateHeaderFooterStrings( SvStream& rStrm, ::com::sun::star
if ( PropValue::GetPropertyValue( aAny, rXPagePropSet, OUString( "DateTimeText" ), true ) )
{
if ( aAny >>= aString )
- PPTWriter::WriteCString( rStrm, aString, 0 );
+ PPTWriter::WriteCString( rStrm, aString );
}
}
}
@@ -657,7 +657,7 @@ void PPTWriter::ImplCreateHeaderFooters( ::com::sun::star::uno::Reference< ::com
nVal |= nFormat;
}
- mpPptEscherEx->OpenContainer( EPP_HeadersFooters, 0 );
+ mpPptEscherEx->OpenContainer( EPP_HeadersFooters );
mpPptEscherEx->AddAtom( 4, EPP_HeadersFootersAtom );
mpStrm->WriteUInt32( nVal );
ImplCreateHeaderFooterStrings( *mpStrm, rXPagePropSet );
@@ -1108,7 +1108,7 @@ void ImplExportComments( uno::Reference< drawing::XDrawPage > xPage, SvMemoryStr
OUString sInitials( getInitials( sAuthor ) );
util::DateTime aDateTime( xAnnotation->getDateTime() );
if ( !sAuthor.isEmpty() )
- PPTWriter::WriteCString( rBinaryTagData10Atom, sAuthor, 0 );
+ PPTWriter::WriteCString( rBinaryTagData10Atom, sAuthor );
if ( !sText.isEmpty() )
PPTWriter::WriteCString( rBinaryTagData10Atom, sText, 1 );
if ( !sInitials.isEmpty() )