summaryrefslogtreecommitdiffstats
path: root/src/qdoc/sections.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qdoc/sections.h')
-rw-r--r--src/qdoc/sections.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qdoc/sections.h b/src/qdoc/sections.h
index 576096e0f..d3af83736 100644
--- a/src/qdoc/sections.h
+++ b/src/qdoc/sections.h
@@ -49,7 +49,7 @@ class Section
enum Status { Obsolete, Active };
public:
- Section() : style_(Details), status_(Active), aggregate_(0) { }
+ Section() : style_(Details), status_(Active), aggregate_(nullptr) { }
Section(Style style, Status status);
~Section();
@@ -108,7 +108,7 @@ class Section
void setAggregate(Aggregate *t) { aggregate_ = t; }
private:
- QString sortName(const Node *node, const QString* name = 0);
+ QString sortName(const Node *node, const QString* name = nullptr);
private:
Style style_;