diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-05 12:03:30 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-08-05 11:56:06 +0000 |
commit | a40278562557828634886924c82f58e215be9756 (patch) | |
tree | cab700911bbcfbf280d962cbcac433e2892a337b /svgio/inc/svgnode.hxx | |
parent | b4e12269e813338afc895986fbc4f2703cedd016 (diff) |
loplugin:countusersofdefaultparams in sfx2..svgio
Change-Id: Ia01f3a9aa21c88df5fe5242ad4a3c0acbe68fda0
Reviewed-on: https://gerrit.libreoffice.org/27903
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svgio/inc/svgnode.hxx')
-rw-r--r-- | svgio/inc/svgnode.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svgio/inc/svgnode.hxx b/svgio/inc/svgnode.hxx index 9df8419ad6f4..65be1f391db4 100644 --- a/svgio/inc/svgnode.hxx +++ b/svgio/inc/svgnode.hxx @@ -165,19 +165,19 @@ namespace svgio /// Id access const OUString* getId() const { return mpId; } - void setId(const OUString* pfId = nullptr); + void setId(const OUString* pfId); /// Class access const OUString* getClass() const { return mpClass; } - void setClass(const OUString* pfClass = nullptr); + void setClass(const OUString* pfClass); /// XmlSpace access XmlSpace getXmlSpace() const; - void setXmlSpace(XmlSpace eXmlSpace = XmlSpace_notset) { maXmlSpace = eXmlSpace; } + void setXmlSpace(XmlSpace eXmlSpace) { maXmlSpace = eXmlSpace; } /// Display access #i121656# Display getDisplay() const { return maDisplay; } - void setDisplay(Display eDisplay = Display_inherit) { maDisplay = eDisplay; } + void setDisplay(Display eDisplay) { maDisplay = eDisplay; } /// alternative parent void setAlternativeParent(const SvgNode* pAlternativeParent = nullptr) { mpAlternativeParent = pAlternativeParent; } |