diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-04-30 04:06:50 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-04-30 04:06:50 (GMT) |
commit | 0204346fb91eaf73893b651438980cb9ca5f1f51 (patch) | |
tree | ef1a473482fa207e7b3ef70a95db92439ce2be9b /src/declarative/qml/qmlcustomparser.cpp | |
parent | 0282ea19722c247157c652ef9122379f0e715497 (diff) | |
download | Qt-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.cpp | 3 |
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. |