summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2022-11-20 20:49:26 +0000
committerCaolán McNamara <caolanm@redhat.com>2022-11-21 11:36:53 +0100
commit2adaac8bf01a6caffd0eedb9f456eeadc43f1759 (patch)
treee25a61c40e3b0ecd4cbe7a576c6e4509908f80e2 /include
parent0f8262d34ba7130a8bd8907bc85e9f42fecafd51 (diff)
be more specific on what "Symbol" is
Change-Id: Icd08628848cce74407552f57660d75b1ac9816bb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143009 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/fontcharmap.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/fontcharmap.hxx b/include/vcl/fontcharmap.hxx
index fc9acd061078..7bfd074f3c8b 100644
--- a/include/vcl/fontcharmap.hxx
+++ b/include/vcl/fontcharmap.hxx
@@ -42,7 +42,7 @@ public:
/** A new FontCharMap is created based on passed arguments.
*/
- FontCharMap(bool bSymbolic, std::vector<sal_UCS4> aRangeCodes);
+ FontCharMap(bool bMicrosoftSymbolMap, std::vector<sal_UCS4> aRangeCodes);
virtual ~FontCharMap() override;
@@ -50,7 +50,7 @@ public:
@returns the default font character map.
*/
- static FontCharMapRef GetDefaultMap( bool bSymbols );
+ static FontCharMapRef GetDefaultMap(bool bMicrosoftSymbolMap);
/** Determines if the font character map is the "default". The default map
includes all codepoints in the Unicode BMP range, including surrogates.
@@ -136,7 +136,7 @@ public:
*/
sal_UCS4 GetCharFromIndex( int nCharIndex ) const;
- bool isSymbolic() const;
+ bool isMicrosoftSymbolMap() const;
private:
ImplFontCharMapRef mpImplFontCharMap;