From a40278562557828634886924c82f58e215be9756 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 5 Aug 2016 12:03:30 +0200 Subject: loplugin:countusersofdefaultparams in sfx2..svgio Change-Id: Ia01f3a9aa21c88df5fe5242ad4a3c0acbe68fda0 Reviewed-on: https://gerrit.libreoffice.org/27903 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- svgio/inc/svgnode.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'svgio/inc/svgnode.hxx') 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; } -- cgit