summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlengine_p.h
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2009-07-28 02:56:11 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2009-07-28 02:56:11 (GMT)
commit0cdd8518090be320fa89efaa11ced32215cc2ccc (patch)
tree414de68c6ada9f95450a9a4410c49a4e3e72eb43 /src/declarative/qml/qmlengine_p.h
parent7e8a096cb0ba3bbffdf0eb5aba5646cf3e1cf8bb (diff)
downloadQt-0cdd8518090be320fa89efaa11ced32215cc2ccc.zip
Qt-0cdd8518090be320fa89efaa11ced32215cc2ccc.tar.gz
Qt-0cdd8518090be320fa89efaa11ced32215cc2ccc.tar.bz2
Make private stuff public
commit 752a15ca makes some stuff private that is needed to be public. Moving some stuff back to public until we make a real decision (on how apps can interact with the engine).
Diffstat (limited to 'src/declarative/qml/qmlengine_p.h')
-rw-r--r--src/declarative/qml/qmlengine_p.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/declarative/qml/qmlengine_p.h b/src/declarative/qml/qmlengine_p.h
index 18cdd83..7b459e9 100644
--- a/src/declarative/qml/qmlengine_p.h
+++ b/src/declarative/qml/qmlengine_p.h
@@ -193,12 +193,9 @@ public:
bool resolveType(const Imports&, const QByteArray& type, QmlType** type_return, QUrl* url_return, ImportedNamespace** ns_return=0) const;
void resolveTypeInNamespace(ImportedNamespace*, const QByteArray& type, QmlType** type_return, QUrl* url_return ) const;
-
- static QScriptValue qmlScriptObject(QObject*, QmlEngine*);
static QScriptValue createComponent(QScriptContext*, QScriptEngine*);
static QScriptValue createQmlObject(QScriptContext*, QScriptEngine*);
- static QScriptEngine *getScriptEngine(QmlEngine *e) { return &e->d_func()->scriptEngine; }
static QmlEnginePrivate *get(QmlEngine *e) { return e->d_func(); }
};