From feb1a67179b5d5b1d3771dae584f8388c18c0044 Mon Sep 17 00:00:00 2001 From: Thorsten Behrens Date: Thu, 22 Dec 2011 12:46:22 +0100 Subject: Fix slideshow text animations - fdo#43837 String compare was not replaced equivalently, this needs matching against the XTEXT prefix, not exactly Removed VERBOSE_TEXTCOMMENTS exporter flag, that's now unused. Added some verbose-mode trace output --- svx/source/unodraw/UnoGraphicExporter.cxx | 7 ------- 1 file changed, 7 deletions(-) (limited to 'svx') diff --git a/svx/source/unodraw/UnoGraphicExporter.cxx b/svx/source/unodraw/UnoGraphicExporter.cxx index f4475fcb691e..5f222036a62a 100644 --- a/svx/source/unodraw/UnoGraphicExporter.cxx +++ b/svx/source/unodraw/UnoGraphicExporter.cxx @@ -120,7 +120,6 @@ namespace svx sal_Int32 mnWidth; sal_Int32 mnHeight; sal_Bool mbExportOnlyBackground; - sal_Bool mbVerboseComments; sal_Bool mbScrollText; sal_Bool mbUseHighContrast; sal_Bool mbTranslucent; @@ -137,7 +136,6 @@ namespace svx : mnWidth( 0 ) , mnHeight( 0 ) , mbExportOnlyBackground( false ) - , mbVerboseComments( false ) , mbScrollText( false ) , mbUseHighContrast( false ) , mbTranslucent( sal_False ) @@ -538,11 +536,6 @@ void GraphicExporter::ParseSettings( const Sequence< PropertyValue >& aDescripto { pDataValues->Value >>= mnPageNumber; } - else if( pDataValues->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "VerboseComments" ) ) ) - { - // #110496# Read flag for verbose metafile comments - pDataValues->Value >>= rSettings.mbVerboseComments; - } else if( pDataValues->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "ScrollText" ) ) ) { // #110496# Read flag solitary scroll text metafile -- cgit