diff options
Diffstat (limited to 'include/xmloff/txtparae.hxx')
-rw-r--r-- | include/xmloff/txtparae.hxx | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/include/xmloff/txtparae.hxx b/include/xmloff/txtparae.hxx index fc3edc0d7a8d..99d9ce877ca4 100644 --- a/include/xmloff/txtparae.hxx +++ b/include/xmloff/txtparae.hxx @@ -264,7 +264,7 @@ protected: void exportPageFrames( bool bProgress ); void exportFrameFrames( bool bAutoStyles, bool bProgress, - const css::uno::Reference< css::text::XTextFrame > *pParentTxtFrame = nullptr ); + const css::uno::Reference< css::text::XTextFrame > *pParentTxtFrame ); void exportNumStyles( bool bUsed ); @@ -292,7 +292,7 @@ protected: bool bAutoStyles, bool bProgress, bool bExportParagraph, MultiPropertySetHelper& rPropSetHelper, - TextPNS eExtensionNS = TextPNS::ODF); + TextPNS eExtensionNS); virtual void exportTable( const css::uno::Reference< css::text::XTextContent > & rTextContent, @@ -311,7 +311,7 @@ protected: const css::uno::Reference< css::text::XTextContent > & rTextContent, FrameType eTxpe, bool bAutoStyles, bool bProgress, bool bExportContent, - const css::uno::Reference< css::beans::XPropertySet > *pRangePropSet = nullptr ); + const css::uno::Reference< css::beans::XPropertySet > *pRangePropSet ); void _exportTextFrame( const css::uno::Reference< css::beans::XPropertySet > & rPropSet, const css::uno::Reference< css::beans::XPropertySetInfo > & rPropSetInfo, @@ -457,9 +457,7 @@ public: SvXMLExport& rExport); // This methods exports all (or all used) styles - void exportTextStyles( bool bUsed - , bool bProg = false - ); + void exportTextStyles( bool bUsed, bool bProg ); /// This method exports (text field) declarations etc. void exportTextDeclarations(); @@ -512,15 +510,14 @@ public: void collectTextAutoStyles( const css::uno::Reference< css::text::XText > & rText, const css::uno::Reference< css::text::XTextSection > & rBaseSection, - bool bIsProgress = false ) + bool bIsProgress ) { exportText( rText, rBaseSection, true, bIsProgress, true/*bExportParagraph*/ ); } // It the model implements the xAutoStylesSupplier interface, the automatic // styles can exported without iterating over the text portions - bool collectTextAutoStylesOptimized( - bool bIsProgress = false ); + bool collectTextAutoStylesOptimized( bool bIsProgress ); // This method exports all automatic styles that have been collected. void exportTextAutoStyles(); @@ -543,19 +540,19 @@ public: void exportText( const css::uno::Reference< css::text::XText > & rText, const css::uno::Reference< css::text::XTextSection > & rBaseSection, - bool bIsProgress = false, + bool bIsProgress, TextPNS eExtensionNS = TextPNS::ODF) { exportText( rText, rBaseSection, false, bIsProgress, true/*bExportParagraph*/, eExtensionNS ); } - void exportFramesBoundToPage( bool bIsProgress = false ) + void exportFramesBoundToPage( bool bIsProgress ) { exportPageFrames( bIsProgress ); } void exportFramesBoundToFrame( const css::uno::Reference< css::text::XTextFrame >& rParentTxtFrame, - bool bIsProgress = false ) + bool bIsProgress ) { exportFrameFrames( false, bIsProgress, &rParentTxtFrame ); } |