Kaydet (Commit) 1385f373 authored tarafından Luboš Luňák's avatar Luboš Luňák

fix last commit

operator== is case-sensitive

Change-Id: I9b0a99ffdd53780ab14d569b3fac17a7983d5b96
üst dbc484ce
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment