diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-23 04:24:20 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-23 06:19:10 (GMT) |
commit | cd8d8d49f78c1cbb8ad3546e66a461b9e6e29ff5 (patch) | |
tree | 1fbbbfec0a5ea7a1ce0c00684f83c34e8278e18e /tests | |
parent | 113e350e36c0ff31824bc238160094814dc3fb4f (diff) | |
download | Qt-cd8d8d49f78c1cbb8ad3546e66a461b9e6e29ff5.zip Qt-cd8d8d49f78c1cbb8ad3546e66a461b9e6e29ff5.tar.gz Qt-cd8d8d49f78c1cbb8ad3546e66a461b9e6e29ff5.tar.bz2 |
Make QmlBinding (and friends) private
QmlBinding exposes way too many implementation details to be confident
about making it public right now.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative/qmldebug/tst_qmldebug.cpp | 2 | ||||
-rw-r--r-- | tests/auto/declarative/qmlmetaproperty/tst_qmlmetaproperty.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/qmldebug/tst_qmldebug.cpp b/tests/auto/declarative/qmldebug/tst_qmldebug.cpp index ba07331..2f1a557 100644 --- a/tests/auto/declarative/qmldebug/tst_qmldebug.cpp +++ b/tests/auto/declarative/qmldebug/tst_qmldebug.cpp @@ -51,8 +51,8 @@ #include <QtDeclarative/qmlexpression.h> #include <QtDeclarative/qmlmetatype.h> #include <QtDeclarative/qmlmetaproperty.h> -#include <QtDeclarative/qmlbinding.h> +#include <private/qmlbinding_p.h> #include <private/qmldebug_p.h> #include <private/qmlenginedebug_p.h> #include <private/qmldebugclient_p.h> diff --git a/tests/auto/declarative/qmlmetaproperty/tst_qmlmetaproperty.cpp b/tests/auto/declarative/qmlmetaproperty/tst_qmlmetaproperty.cpp index c289641..540d658 100644 --- a/tests/auto/declarative/qmlmetaproperty/tst_qmlmetaproperty.cpp +++ b/tests/auto/declarative/qmlmetaproperty/tst_qmlmetaproperty.cpp @@ -43,7 +43,7 @@ #include <QtDeclarative/qmlcomponent.h> #include <QtDeclarative/qmlmetaproperty.h> #include <private/qguard_p.h> -#include <QtDeclarative/qmlbinding.h> +#include <private/qmlbinding_p.h> #include <QtGui/QLineEdit> class MyQmlObject : public QObject |