summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2022-09-06 11:30:10 +0300
committerCaolán McNamara <caolanm@redhat.com>2022-09-06 12:13:24 +0200
commit6566c01192f73c687fa12f1d5ca816ded879efbb (patch)
tree9ed3034a62c164cf2e7e823d5da8771a54f475b4 /sd
parentc3fdac32fee3b342bb1d881a443748140af510b5 (diff)
Replace leftover use of StarSymbol with OpenSymbol
Change-Id: I2cfc88dfbdb0d5d4f296dea6f5b72122a0af7965 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139476 Tested-by: Tor Lillqvist <tml@collabora.com> Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/core/stlpool.cxx4
1 files changed, 2 insertions, 2 deletions
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);