summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-09-24 13:02:12 +0200
committerAndrea Gelmini <andrea.gelmini@gelma.net>2020-09-25 08:27:00 +0200
commit094e84bcebd2fb0669e6bfccd0c589e719cbf517 (patch)
treeacb1f5defb9608b72854899704de0ed8c6286983 /unotools
parentfb06d5b1784cb8b91ea6d286b3f2baa38fed0b4c (diff)
Fix typo in code
It passed "make check" on Linux Change-Id: I78ef6952782cedead97cf118588f4b7923bb0909 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103306 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/misc/fontcvt.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unotools/source/misc/fontcvt.cxx b/unotools/source/misc/fontcvt.cxx
index 9ea6444363d9..b4bd2c45c852 100644
--- a/unotools/source/misc/fontcvt.cxx
+++ b/unotools/source/misc/fontcvt.cxx
@@ -1180,7 +1180,7 @@ StarSymbolToMSMultiFontImpl::StarSymbolToMSMultiFontImpl()
}
//In order of preference
- static const ExtendedConvertTable aAgressiveTable[] =
+ static const ExtendedConvertTable aAggressiveTable[] =
{
ExtendedConvertTable(Symbol, aSymbolExtraTab2,
sizeof(aSymbolExtraTab2)),
@@ -1193,11 +1193,11 @@ StarSymbolToMSMultiFontImpl::StarSymbolToMSMultiFontImpl()
};
//Allow extra conversions that are not perfect, but "good enough"
- nEntries = SAL_N_ELEMENTS(aAgressiveTable);
+ nEntries = SAL_N_ELEMENTS(aAggressiveTable);
for (i = 0; i < nEntries; ++i)
{
- const ExtendedConvertTable& r = aAgressiveTable[i];
+ const ExtendedConvertTable& r = aAggressiveTable[i];
SymbolEntry aEntry;
aEntry.eFont = r.meFont;
for (int j = r.mnSize / sizeof(r.mpTable[0]) - 1; j >=0; --j)