From 094e84bcebd2fb0669e6bfccd0c589e719cbf517 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 24 Sep 2020 13:02:12 +0200 Subject: 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 Tested-by: Jenkins --- unotools/source/misc/fontcvt.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'unotools') 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) -- cgit