summaryrefslogtreecommitdiff
path: root/svgio/inc/svgio/svgreader/svgnode.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:24:47 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:45 +0100
commit6f06230da10c6a51c5538f1b5515b341475ea043 (patch)
tree4729ecc6b256810d890fc4ad32b6dd5f4ef0ee44 /svgio/inc/svgio/svgreader/svgnode.hxx
parent35b3228609f3c4f3ae37695597f0d11127467bb8 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I0164a67073395b865fa3e3ce342665f6497dc5b8
Diffstat (limited to 'svgio/inc/svgio/svgreader/svgnode.hxx')
-rw-r--r--svgio/inc/svgio/svgreader/svgnode.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svgio/inc/svgio/svgreader/svgnode.hxx b/svgio/inc/svgio/svgreader/svgnode.hxx
index 4111ed3b66a6..d951a284b20c 100644
--- a/svgio/inc/svgio/svgreader/svgnode.hxx
+++ b/svgio/inc/svgio/svgreader/svgnode.hxx
@@ -165,11 +165,11 @@ namespace svgio
/// Id access
const OUString* getId() const { return mpId; }
- void setId(const OUString* pfId = 0);
+ void setId(const OUString* pfId = nullptr);
/// Class access
const OUString* getClass() const { return mpClass; }
- void setClass(const OUString* pfClass = 0);
+ void setClass(const OUString* pfClass = nullptr);
/// XmlSpace access
XmlSpace getXmlSpace() const;
@@ -180,7 +180,7 @@ namespace svgio
void setDisplay(Display eDisplay = Display_inherit) { maDisplay = eDisplay; }
/// alternative parent
- void setAlternativeParent(const SvgNode* pAlternativeParent = 0) { mpAlternativeParent = pAlternativeParent; }
+ void setAlternativeParent(const SvgNode* pAlternativeParent = nullptr) { mpAlternativeParent = pAlternativeParent; }
};
} // end of namespace svgreader
} // end of namespace svgio