diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2016-11-18 13:40:04 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2016-11-18 13:40:51 +0200 |
commit | 4034babeb51af323ff2a47642e3a1386fc1d6b46 (patch) | |
tree | 5e161944fbd0a2404c20b6db23e480b70f892d11 | |
parent | 0fce641f550f7d545762fe84f745507d94206e34 (diff) |
Make this look less wired
Change-Id: I20b6a5e6ecdf48e1ca8df2e7e86248eae666c9f1
-rw-r--r-- | unotools/source/misc/fontcvt.cxx | 10 |
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" ) |