diff options
author | Tor Lillqvist <tml@collabora.com> | 2022-09-06 11:30:10 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2022-09-06 22:04:23 +0200 |
commit | 6e6e109cf027577d1b30cdea73db13444242b123 (patch) | |
tree | a75da46fd877925321915147c99d6dd7b4942a27 /sd/source | |
parent | fd8dc87cc895a6e478596873764bdbdfb8fd2d7a (diff) |
Replace leftover use of StarSymbol with OpenSymbol
Change-Id: I2cfc88dfbdb0d5d4f296dea6f5b72122a0af7965
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139479
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/core/stlpool.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/core/stlpool.cxx b/sd/source/core/stlpool.cxx index 503bb3f184b5..b40d4c1559f8 100644 --- a/sd/source/core/stlpool.cxx +++ b/sd/source/core/stlpool.cxx @@ -1079,7 +1079,7 @@ void SdStyleSheetPool::PutNumBulletItem( SfxStyleSheetBase* pSheet, // Standard template SvxNumberFormat aNumberFormat(SVX_NUM_CHAR_SPECIAL); aNumberFormat.SetBulletFont(&rBulletFont); - aNumberFormat.SetBulletChar( 0x25CF ); // StarBats: 0xF000 + 34 + aNumberFormat.SetBulletChar( 0x25CF ); // U+25CF: BLACK CIRCLE aNumberFormat.SetBulletRelSize(45); aNumberFormat.SetBulletColor(COL_AUTO); aNumberFormat.SetStart(1); @@ -1166,7 +1166,7 @@ void SdStyleSheetPool::PutNumBulletItem( SfxStyleSheetBase* pSheet, vcl::Font SdStyleSheetPool::GetBulletFont() { - vcl::Font aBulletFont( "StarSymbol", Size(0, 1000) ); + vcl::Font aBulletFont( "OpenSymbol", Size(0, 1000) ); aBulletFont.SetCharSet(RTL_TEXTENCODING_UNICODE); aBulletFont.SetWeight(WEIGHT_NORMAL); aBulletFont.SetUnderline(LINESTYLE_NONE); |