diff options
author | Noel Grandin <noel@peralex.com> | 2015-03-25 15:58:38 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-03-26 09:41:35 +0200 |
commit | ce46c98dbeb3364684843daa5b269c74fce2af64 (patch) | |
tree | 9adb1c5af4e9d6d371b14725e2f35b7e184059b0 /sd | |
parent | 701343b1eea115e27a40ac93e59c0c1f0d2f6422 (diff) |
convert BS_ constants to SvxBulletStyle enum class
Change-Id: I8d68394c29b7602b21f8d972552aa7226778d3ff
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/core/drawdoc4.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/core/drawdoc4.cxx b/sd/source/core/drawdoc4.cxx index 881ccc05b527..8572e1e6ce5d 100644 --- a/sd/source/core/drawdoc4.cxx +++ b/sd/source/core/drawdoc4.cxx @@ -238,7 +238,7 @@ void SdDrawDocument::CreateLayoutTemplates() // BulletItem and BulletFont for title and outline SvxBulletItem aBulletItem(EE_PARA_BULLET); // Identical in all layers - aBulletItem.SetStyle(BS_BULLET); + aBulletItem.SetStyle(SvxBulletStyle::BULLET); aBulletItem.SetStart(1); aBulletItem.SetScale(45); // In percent @@ -1206,7 +1206,7 @@ void SdDrawDocument::SetTextDefaults() const vcl::Font aBulletFont( SdStyleSheetPool::GetBulletFont() ); aBulletFont.SetSize(Size(0,846)); // 24 pt aBulletItem.SetFont(aBulletFont); - aBulletItem.SetStyle(BS_BULLET); + aBulletItem.SetStyle(SvxBulletStyle::BULLET); aBulletItem.SetStart(1); aBulletItem.SetScale(45); // In percent aBulletItem.SetSymbol( 0x25CF ); // In points |