summaryrefslogtreecommitdiffstats
path: root/src/tools/qdoc/node.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2013-02-07 10:39:22 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-02-07 12:36:00 +0100
commit41dfd254c3a972fd77389713d0e370b98247a12d (patch)
tree06f4e97c5aded6a1a12b7f8d8b94e83fba7ef8ce /src/tools/qdoc/node.h
parent5221ae5f424f24000d877d2a4394e2d75a052cca (diff)
qdoc: Fix translation contexts.
Put all translations into the namespace QDoc and fix warnings about invalid tr()-usage by removing the free tr()-function from tr.h. Provide QCoreApplication::translate() for bootstrap builds. Change-Id: I2b6931188346f290e80e14b84adff8892d8a860f Reviewed-by: Martin Smith <martin.smith@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'src/tools/qdoc/node.h')
-rw-r--r--src/tools/qdoc/node.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/qdoc/node.h b/src/tools/qdoc/node.h
index 56da4ca174..11c08fb659 100644
--- a/src/tools/qdoc/node.h
+++ b/src/tools/qdoc/node.h
@@ -69,6 +69,8 @@ typedef QList<QPair<QString,QString> > ImportList;
class Node
{
+ Q_DECLARE_TR_FUNCTIONS(QDoc::Node)
+
public:
enum Type {
Namespace,
@@ -596,6 +598,8 @@ class QmlPropertyNode;
class QmlPropertyNode : public LeafNode
{
+ Q_DECLARE_TR_FUNCTIONS(QDoc::QmlPropertyNode)
+
public:
QmlPropertyNode(QmlClassNode *parent,
const QString& name,