[PATCH] fix OUString conversion
Sean Young (via Code Review)
gerrit at gerrit.libreoffice.org
Sat May 25 15:35:14 PDT 2013
Hi,
I have submitted a patch for review:
https://gerrit.libreoffice.org/4035
To pull it, you can do:
git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/35/4035/1
fix OUString conversion
This used to be equalsAscii( "hg", 0, 2 ) before conversion.
Fixes 7d1f4cdec307bb1e761bb5dd3d8231bba5833e10
Change-Id: I2cf61d88c79b3ab33c0ee7d077ee65b16053c05c
---
M vcl/source/gdi/outdev3.cxx
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx
index 4261787..393c2fb 100644
--- a/vcl/source/gdi/outdev3.cxx
+++ b/vcl/source/gdi/outdev3.cxx
@@ -2392,7 +2392,7 @@
// #114999# special emboldening for Ricoh fonts
// TODO: smarter check for special cases by using PreMatch infrastructure?
if( (rFSD.GetWeight() > WEIGHT_MEDIUM)
- && aSearchName.equalsIgnoreAsciiCase( "hg" ) )
+ && aSearchName.startsWithIgnoreAsciiCase( "hg" ) )
{
OUString aBoldName;
if( aSearchName.equalsIgnoreAsciiCase( "hggothicb" ) )
--
To view, visit https://gerrit.libreoffice.org/4035
To unsubscribe, visit https://gerrit.libreoffice.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I2cf61d88c79b3ab33c0ee7d077ee65b16053c05c
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Sean Young <sean at mess.org>
More information about the LibreOffice
mailing list