diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-12-19 12:29:45 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-19 12:30:14 +0100 |
commit | 1385f3736c0b80b7c31c03c457808db2ca4725d9 (patch) | |
tree | 0bd03ef8a4e1179a62191fafe57c63b1c0df34e9 /oox/source | |
parent | dbc484ce448b682f70a774430942063e91ee1909 (diff) |
fix last commit
operator== is case-sensitive
Change-Id: I9b0a99ffdd53780ab14d569b3fac17a7983d5b96
Diffstat (limited to 'oox/source')
-rw-r--r-- | oox/source/export/drawingml.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx index fa5f226a50a1..781feba6b585 100644 --- a/oox/source/export/drawingml.cxx +++ b/oox/source/export/drawingml.cxx @@ -1451,7 +1451,7 @@ void DrawingML::WriteConnectorConnections( EscherConnectorListEntry& rConnectorE sal_Unicode DrawingML::SubstituteBullet( sal_Unicode cBulletId, ::com::sun::star::awt::FontDescriptor& rFontDesc ) { - if ( rFontDesc.Name == "starsymbol" || rFontDesc.Name == "opensymbol" ) + if ( rFontDesc.Name.equalsIgnoreAsciiCase("starsymbol") || rFontDesc.Name.equalsIgnoreAsciiCase("opensymbol") ) { rtl_TextEncoding eCharSet = rFontDesc.CharSet; cBulletId = msfilter::util::bestFitOpenSymbolToMSFont(cBulletId, eCharSet, rFontDesc.Name); |