diff options
author | Thorsten Behrens <tbehrens@suse.com> | 2011-12-22 12:46:22 +0100 |
---|---|---|
committer | Thorsten Behrens <tbehrens@suse.com> | 2011-12-22 23:52:15 +0100 |
commit | feb1a67179b5d5b1d3771dae584f8388c18c0044 (patch) | |
tree | 349c1f66b103fdf560a50890d0e7768183fb45b1 /svx/source/unodraw | |
parent | fe1998c194f038c1e20ae6482c2a8d970f66a258 (diff) |
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
Diffstat (limited to 'svx/source/unodraw')
-rw-r--r-- | svx/source/unodraw/UnoGraphicExporter.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
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 |