summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcustomparser.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-04-30 04:06:50 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-04-30 04:06:50 (GMT)
commit0204346fb91eaf73893b651438980cb9ca5f1f51 (patch)
treeef1a473482fa207e7b3ef70a95db92439ce2be9b /src/declarative/qml/qmlcustomparser.cpp
parent0282ea19722c247157c652ef9122379f0e715497 (diff)
downloadQt-0204346fb91eaf73893b651438980cb9ca5f1f51.zip
Qt-0204346fb91eaf73893b651438980cb9ca5f1f51.tar.gz
Qt-0204346fb91eaf73893b651438980cb9ca5f1f51.tar.bz2
Make custom parsers internal.
Custom parsers still have a way to go before they fully fit the QML 2.0 language.
Diffstat (limited to 'src/declarative/qml/qmlcustomparser.cpp')
-rw-r--r--src/declarative/qml/qmlcustomparser.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlcustomparser.cpp b/src/declarative/qml/qmlcustomparser.cpp
index fe0c3a8..544c469 100644
--- a/src/declarative/qml/qmlcustomparser.cpp
+++ b/src/declarative/qml/qmlcustomparser.cpp
@@ -39,8 +39,8 @@
**
****************************************************************************/
-#include "qmlcustomparser.h"
#include "qmlcustomparser_p.h"
+#include "qmlcustomparser_p_p.h"
#include "qmlparser_p.h"
QT_BEGIN_NAMESPACE
@@ -50,6 +50,7 @@ using namespace QmlParser;
/*!
\class QmlCustomParser
\brief The QmlCustomParser class allows you to add new arbitrary types to QML.
+ \internal
By subclassing QmlCustomParser, you can add an XML parser for building a
particular type.