diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-03-31 14:54:00 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-03-31 15:25:11 +0100 |
commit | f4b7338f989bd5f7e934c4dc38045e812eb3d59f (patch) | |
tree | 55a930451f27fa3e3c38c0b1cdfbd909d3a68c36 /svx/source/dialog/svxbmpnumvalueset.cxx | |
parent | e3aa0e4c567afc734c45c715e44d9e3040cb9f29 (diff) |
Resolves: tdf#106515 use OpenSymbol, not StarSymbol as the default bullet font
For choosing a bullet from a real font it matters while otherwise its a synonym. Of
course we have this code duplicated three times.
Change-Id: I2428b9a23d997925de3e731b8afe9fb8cf18ed54
Diffstat (limited to 'svx/source/dialog/svxbmpnumvalueset.cxx')
-rw-r--r-- | svx/source/dialog/svxbmpnumvalueset.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/dialog/svxbmpnumvalueset.cxx b/svx/source/dialog/svxbmpnumvalueset.cxx index f4c27d362f19..79791f414242 100644 --- a/svx/source/dialog/svxbmpnumvalueset.cxx +++ b/svx/source/dialog/svxbmpnumvalueset.cxx @@ -81,7 +81,7 @@ static const sal_Unicode aBulletTypes[] = static vcl::Font& lcl_GetDefaultBulletFont() { static bool bInit = false; - static vcl::Font aDefBulletFont( "StarSymbol", "", Size( 0, 14 ) ); + static vcl::Font aDefBulletFont("OpenSymbol", "", Size(0, 14)); if(!bInit) { aDefBulletFont.SetCharSet( RTL_TEXTENCODING_SYMBOL ); |