[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - vcl/source
Sean Young
sean at mess.org
Mon Jul 1 05:07:32 PDT 2013
vcl/source/gdi/outdev3.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit c150dd7fdc593dd320f6bd67828d769312517e81
Author: Sean Young <sean at mess.org>
Date: Sat May 25 20:06:15 2013 +0100
fix OUString conversion
This used to be equalsAscii( "hg", 0, 2 ) before conversion.
Fixes 7d1f4cdec307bb1e761bb5dd3d8231bba5833e10
Change-Id: I2cf61d88c79b3ab33c0ee7d077ee65b16053c05c
Reviewed-on: https://gerrit.libreoffice.org/4035
Reviewed-by: Thomas Arnhold <thomas at arnhold.org>
Tested-by: Thomas Arnhold <thomas at arnhold.org>
Signed-off-by: Michael Meeks <michael.meeks at suse.com>
diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx
index d5d019a..3b8e3c5 100644
--- a/vcl/source/gdi/outdev3.cxx
+++ b/vcl/source/gdi/outdev3.cxx
@@ -2392,7 +2392,7 @@ ImplDevFontListData* ImplDevFontList::ImplFindByFont( FontSelectPattern& rFSD,
// #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" ) )
More information about the Libreoffice-commits
mailing list