summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-12-19 12:29:45 +0100
committerLuboš Luňák <l.lunak@suse.cz>2012-12-19 12:30:14 +0100
commit1385f3736c0b80b7c31c03c457808db2ca4725d9 (patch)
tree0bd03ef8a4e1179a62191fafe57c63b1c0df34e9 /oox
parentdbc484ce448b682f70a774430942063e91ee1909 (diff)
fix last commit
operator== is case-sensitive Change-Id: I9b0a99ffdd53780ab14d569b3fac17a7983d5b96
Diffstat (limited to 'oox')
-rw-r--r--oox/source/export/drawingml.cxx2
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);