summaryrefslogtreecommitdiffstats
path: root/unotools/source
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2016-11-18 13:40:04 +0200
committerKhaled Hosny <khaledhosny@eglug.org>2016-11-18 13:40:51 +0200
commit4034babeb51af323ff2a47642e3a1386fc1d6b46 (patch)
tree5e161944fbd0a2404c20b6db23e480b70f892d11 /unotools/source
parentMinor changes to simplify editing in FontForge (diff)
downloadcore-4034babeb51af323ff2a47642e3a1386fc1d6b46.tar.gz
core-4034babeb51af323ff2a47642e3a1386fc1d6b46.zip
Make this look less wired
Change-Id: I20b6a5e6ecdf48e1ca8df2e7e86248eae666c9f1
Diffstat (limited to 'unotools/source')
-rw-r--r--unotools/source/misc/fontcvt.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/unotools/source/misc/fontcvt.cxx b/unotools/source/misc/fontcvt.cxx
index e42c9b303562..b48f2106155f 100644
--- a/unotools/source/misc/fontcvt.cxx
+++ b/unotools/source/misc/fontcvt.cxx
@@ -1353,7 +1353,10 @@ const ConvertChar* ConvertChar::GetRecodeData( const OUString& rOrgFontName, con
{
const RecodeTable& r = aStarSymbolRecodeTable[i];
if( aOrgName.equalsAscii( r.pOrgName ) )
- { pCvt = &r.aCvt; break; }
+ {
+ pCvt = &r.aCvt;
+ break;
+ }
}
}
//It's plausible that it's better to implement this
@@ -1366,7 +1369,10 @@ const ConvertChar* ConvertChar::GetRecodeData( const OUString& rOrgFontName, con
{
const RecodeTable& r = aAppleSymbolRecodeTable[i];
if( aOrgName.equalsAscii( r.pOrgName ) )
- { pCvt = &r.aCvt; break; }
+ {
+ pCvt = &r.aCvt;
+ break;
+ }
}
}
else if( aMapName == "starbats" )