diff options
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/nbdtmg.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/svx/nbdtmg.hxx b/include/svx/nbdtmg.hxx index aeb4ae6651fb..004fecd7b777 100644 --- a/include/svx/nbdtmg.hxx +++ b/include/svx/nbdtmg.hxx @@ -122,6 +122,7 @@ class SVX_DLLPUBLIC NBOTypeMgrBase const SfxItemSet* pSet; MapUnit eCoreUnit; // store the attributes passed from pSet + OUString aBulletCharFmtName; OUString aNumCharFmtName; NBOTypeMgrBase(const NBOTypeMgrBase&) = delete; @@ -129,7 +130,6 @@ class SVX_DLLPUBLIC NBOTypeMgrBase NBOTypeMgrBase() : pSet(nullptr) , eCoreUnit(MapUnit::MapTwip) - , aNumCharFmtName(OUString()) , bIsLoading(false) {} virtual ~NBOTypeMgrBase() {} @@ -143,7 +143,8 @@ class SVX_DLLPUBLIC NBOTypeMgrBase // store the attributes passed from pSet void SetItems(const SfxItemSet* pArg); protected: - const OUString& GetBulCharFmtName() { return aNumCharFmtName;} + const OUString& GetBulletCharFmtName() { return aBulletCharFmtName;} + const OUString& GetNumCharFmtName() { return aNumCharFmtName;} MapUnit GetMapUnit() { return eCoreUnit;} protected: bool bIsLoading; |