summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/qdoc/qdoc/src/qdoc/atom.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qdoc/qdoc/src/qdoc/atom.h b/src/qdoc/qdoc/src/qdoc/atom.h
index 6aee9847f..dbfd0c4a9 100644
--- a/src/qdoc/qdoc/src/qdoc/atom.h
+++ b/src/qdoc/qdoc/src/qdoc/atom.h
@@ -135,6 +135,7 @@ public:
void appendChar(QChar ch) { m_strs[0] += ch; }
void concatenateString(const QString &string) { m_strs[0] += string; }
+ void append(const QString &string) { m_strs << string; }
void chopString() { m_strs[0].chop(1); }
void setString(const QString &string) { m_strs[0] = string; }
Atom *next() { return m_next; }