summaryrefslogtreecommitdiff
path: root/svgio/inc/svgnode.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svgio/inc/svgnode.hxx')
-rw-r--r--svgio/inc/svgnode.hxx8
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; }