From 6566c01192f73c687fa12f1d5ca816ded879efbb Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 6 Sep 2022 11:30:10 +0300 Subject: Replace leftover use of StarSymbol with OpenSymbol MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I2cfc88dfbdb0d5d4f296dea6f5b72122a0af7965 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139476 Tested-by: Tor Lillqvist Reviewed-by: Tor Lillqvist Tested-by: Caolán McNamara Reviewed-by: Caolán McNamara --- sd/source/core/stlpool.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sd') diff --git a/sd/source/core/stlpool.cxx b/sd/source/core/stlpool.cxx index 90d49f3467e1..82cb59228958 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); @@ -1165,7 +1165,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); -- cgit