summaryrefslogtreecommitdiff
path: root/include/svx/nbdtmg.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-02 09:08:58 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-02 07:54:20 +0000
commit3fea7ac94b986ba5e3632d1bbb383c65ced79f1a (patch)
tree4f882b31963c0fdf87abc373ecdeb57444529048 /include/svx/nbdtmg.hxx
parent2db81e733610331bc0f84d72f7e49db9af92949c (diff)
loplugin:unusedfields
Change-Id: I96634c18ba6600f8f7d5d04a162dcd7e1e312923 Reviewed-on: https://gerrit.libreoffice.org/30474 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/nbdtmg.hxx')
-rw-r--r--include/svx/nbdtmg.hxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/include/svx/nbdtmg.hxx b/include/svx/nbdtmg.hxx
index e7117899694b..e1f14e0c6ce1 100644
--- a/include/svx/nbdtmg.hxx
+++ b/include/svx/nbdtmg.hxx
@@ -79,11 +79,9 @@ class SVX_DLLPUBLIC BulletsSettings
public:
bool bIsCustomized;
rtl::OUString sDescription;
- NBType eType;
public:
- BulletsSettings(NBType eTy) :
- bIsCustomized(false),
- eType(eTy)
+ BulletsSettings() :
+ bIsCustomized(false)
{}
virtual ~BulletsSettings(){}
};
@@ -95,9 +93,8 @@ class SVX_DLLPUBLIC BulletsSettings_Impl:public BulletsSettings
vcl::Font aFont;
public:
- BulletsSettings_Impl(NBType eTy)
- : BulletsSettings(eTy)
- , cBulletChar(0)
+ BulletsSettings_Impl()
+ : cBulletChar(0)
{}
virtual ~BulletsSettings_Impl() override {}
};