summaryrefslogtreecommitdiffstats
path: root/src/tools/qdoc/node.h
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2015-03-20 14:19:47 +0100
committerMartin Smith <martin.smith@digia.com>2015-03-25 10:59:16 +0000
commit040e201ba2a17310ff533b25d0ef079deb2e3494 (patch)
tree259fb6fd6688aa2f8129546d685948c878992076 /src/tools/qdoc/node.h
parentb1a9787f01c381f5a40000c57c1f5d13c6a44ce7 (diff)
qdoc: Remove obsolete stuff from the qdoc manual
Remove the \service and \mainclass commands, and the ditamap stuff. Also remove all reverences to these commands from qdoc itself. Change-Id: I8d150acdd56d40e6a4198a021e50f5fe3f3b1194 Task-number: QTBUG-45143 Reviewed-by: Martin Smith <martin.smith@digia.com>
Diffstat (limited to 'src/tools/qdoc/node.h')
-rw-r--r--src/tools/qdoc/node.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/tools/qdoc/node.h b/src/tools/qdoc/node.h
index 7dd868c3c0..78f3d9eb6e 100644
--- a/src/tools/qdoc/node.h
+++ b/src/tools/qdoc/node.h
@@ -116,7 +116,6 @@ public:
Deprecated,
Preliminary,
Commendable,
- Main,
Internal
}; // don't reorder this enum
@@ -523,8 +522,6 @@ public:
const QList<RelatedClass> &ignoredBaseClasses() const { return ignoredBases_; }
const QList<UsingClause>& usingClauses() const { return usingClauses_; }
- QString serviceName() const { return sname; }
- void setServiceName(const QString& value) { sname = value; }
QmlTypeNode* qmlElement() { return qmlelement; }
void setQmlElement(QmlTypeNode* qcn) { qmlelement = qcn; }
virtual bool isAbstract() const Q_DECL_OVERRIDE { return abstract_; }
@@ -539,7 +536,6 @@ private:
QList<UsingClause> usingClauses_;
bool abstract_;
bool wrapper_;
- QString sname;
QString obsoleteLink_;
QmlTypeNode* qmlelement;
};