summaryrefslogtreecommitdiff
path: root/unotools/source/misc/fontcvt.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-06 18:54:13 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-06 19:37:47 +0300
commit88bea0a5a8b1e5c1fb601f4e4ba61ba7bce38a3a (patch)
tree3efd83cf3c67f727f473b73da69e30963f08dc0f /unotools/source/misc/fontcvt.cxx
parentdcb88d170b6ced0ee805b787c1e9be820ff90d25 (diff)
Kill superfluous vertical whitespace
Change-Id: I949ba575951998d36cb4d38746f2182633046b3b
Diffstat (limited to 'unotools/source/misc/fontcvt.cxx')
-rw-r--r--unotools/source/misc/fontcvt.cxx35
1 files changed, 0 insertions, 35 deletions
diff --git a/unotools/source/misc/fontcvt.cxx b/unotools/source/misc/fontcvt.cxx
index 171311069e48..2b6d4ac025f8 100644
--- a/unotools/source/misc/fontcvt.cxx
+++ b/unotools/source/misc/fontcvt.cxx
@@ -32,7 +32,6 @@
//various holes in OpenSymbol which were filled by StarSymbol, i.e.
//destination mapping points which are empty in OpenSymbol
-
// note: the character mappings that are only approximations
// are marked (with an empty comment)
@@ -110,8 +109,6 @@ static const sal_Unicode aStarBatsTab[224] =
0, 0, 0, 0xE03a
};
-
-
static const sal_Unicode aStarMathTab[224] =
{
// F020
@@ -186,8 +183,6 @@ static const sal_Unicode aStarMathTab[224] =
0x2124, 0x211a, 0x211d, 0x2102
};
-
-
static const sal_Unicode aWingDingsTab[224] =
{
// F020
@@ -262,8 +257,6 @@ static const sal_Unicode aWingDingsTab[224] =
0xe4c2, 0xe4c3, 0xe4c4, 0xe4c5
};
-
-
static const sal_Unicode aWingDings2Tab[224] =
{
// F020
@@ -338,8 +331,6 @@ static const sal_Unicode aWingDings2Tab[224] =
0, 0, 0, 0
};
-
-
static const sal_Unicode aWingDings3Tab[224] =
{
// F020
@@ -414,8 +405,6 @@ static const sal_Unicode aWingDings3Tab[224] =
0, 0, 0, 0
};
-
-
static const sal_Unicode aWebDingsTab[224] =
{
// F020
@@ -490,8 +479,6 @@ static const sal_Unicode aWebDingsTab[224] =
0xe3db, 0xe3dc, 0xe3dd, 0xe3de
};
-
-
static const sal_Unicode aAdobeSymbolTab[224] =
{
//TODO:
@@ -567,8 +554,6 @@ static const sal_Unicode aAdobeSymbolTab[224] =
0xe167, 0xe168, 0xe169, 0,
};
-
-
static const sal_Unicode aMonotypeSortsTab[224] =
{
// F020
@@ -643,8 +628,6 @@ static const sal_Unicode aMonotypeSortsTab[224] =
0x27bc, 0x27bd, 0x27be, 0,
};
-
-
static const sal_Unicode aMTExtraTab[224] =
{
// F020
@@ -793,8 +776,6 @@ static const sal_Unicode aAdobeSymbolToAppleSymbolTab[224] =
0x23AB, 0x23AC, 0x23AD, 0x00FF
};
-
-
static sal_Unicode ImplStarSymbolToStarBats( sal_Unicode c )
{
switch ( c )
@@ -1334,8 +1315,6 @@ StarSymbolToMSMultiFont *CreateStarSymbolToMSMultiFont(bool bPerfectOnly)
return new StarSymbolToMSMultiFontImpl(bPerfectOnly);
}
-
-
sal_Unicode ConvertChar::RecodeChar( sal_Unicode cChar ) const
{
sal_Unicode cRetVal = 0;
@@ -1372,8 +1351,6 @@ sal_Unicode ConvertChar::RecodeChar( sal_Unicode cChar ) const
return cRetVal ? cRetVal : cChar;
}
-
-
// recode the string assuming the character codes are symbol codes
// from an traditional symbol font (i.e. U+F020..U+F0FF)
void ConvertChar::RecodeString( OUString& rStr, sal_Int32 nIndex, sal_Int32 nLen ) const
@@ -1400,8 +1377,6 @@ void ConvertChar::RecodeString( OUString& rStr, sal_Int32 nIndex, sal_Int32 nLen
rStr = aTmpStr.makeStringAndClear();
}
-
-
struct RecodeTable { const char* pOrgName; ConvertChar aCvt;};
static const RecodeTable aStarSymbolRecodeTable[] =
@@ -1434,8 +1409,6 @@ static const RecodeTable aAppleSymbolRecodeTable[] = {
static ConvertChar aImplStarSymbolCvt = { NULL, "StarBats", ImplStarSymbolToStarBats };
-
-
const ConvertChar* ConvertChar::GetRecodeData( const OUString& rOrgFontName, const OUString& rMapFontName )
{
const ConvertChar* pCvt = NULL;
@@ -1480,8 +1453,6 @@ const ConvertChar* ConvertChar::GetRecodeData( const OUString& rOrgFontName, con
return pCvt;
}
-
-
FontToSubsFontConverter CreateFontToSubsFontConverter( const OUString& rOrgName, sal_uLong nFlags )
{
const ConvertChar* pCvt = NULL;
@@ -1511,16 +1482,12 @@ FontToSubsFontConverter CreateFontToSubsFontConverter( const OUString& rOrgName,
return (FontToSubsFontConverter)pCvt;
}
-
-
void DestroyFontToSubsFontConverter(
SAL_UNUSED_PARAMETER FontToSubsFontConverter )
{
//TODO: nothing to do for now, because we use static ImplCvtChars
}
-
-
sal_Unicode ConvertFontToSubsFontChar(
FontToSubsFontConverter hConverter, sal_Unicode cChar )
{
@@ -1530,8 +1497,6 @@ sal_Unicode ConvertFontToSubsFontChar(
return cChar;
}
-
-
OUString GetFontToSubsFontName( FontToSubsFontConverter hConverter )
{
if ( !hConverter )