summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmldom.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2009-08-24 09:55:35 (GMT)
committerKai Koehne <kai.koehne@nokia.com>2009-08-24 09:55:35 (GMT)
commit9e2114fa326be128b03268865b39ddb2731e0173 (patch)
treef90991de6f45fb1d088fbdb79d3a42ec0df1ea18 /src/declarative/qml/qmldom.cpp
parent8c6b5eec52f84ccd76136f0bb4037036943d2a9a (diff)
downloadQt-9e2114fa326be128b03268865b39ddb2731e0173.zip
Qt-9e2114fa326be128b03268865b39ddb2731e0173.tar.gz
Qt-9e2114fa326be128b03268865b39ddb2731e0173.tar.bz2
Remove QmlDomDocument::save
Diffstat (limited to 'src/declarative/qml/qmldom.cpp')
-rw-r--r--src/declarative/qml/qmldom.cpp13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/declarative/qml/qmldom.cpp b/src/declarative/qml/qmldom.cpp
index 78cd906..2aaf492 100644
--- a/src/declarative/qml/qmldom.cpp
+++ b/src/declarative/qml/qmldom.cpp
@@ -144,7 +144,7 @@ QList<QmlDomImport> QmlDomDocument::imports() const
data. On success, true is returned. If the \a data is malformed, false
is returned and QmlDomDocument::loadError() contains an error description.
- \sa QmlDomDocument::save() QmlDomDocument::loadError()
+ \sa QmlDomDocument::loadError()
*/
bool QmlDomDocument::load(QmlEngine *engine, const QByteArray &data, const QUrl &url)
{
@@ -211,17 +211,6 @@ QList<QmlError> QmlDomDocument::errors() const
}
/*!
- Return a saved copy of the QmlDomDocument. The returned data will be valid
- QML XML data.
-
- \sa load()
-*/
-QByteArray QmlDomDocument::save() const
-{
- return QByteArray();
-}
-
-/*!
Returns the document's root object, or an invalid QmlDomObject if the
document has no root.