diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-11-09 09:29:01 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-11-09 09:29:01 (GMT) |
commit | 9b3a87a0f20023b59b3d59807aac69e53be277eb (patch) | |
tree | 169f34e9acd0a050ac93f4960459653957a15436 /tests/auto/qxmlschema/tst_qxmlschema.cpp | |
parent | 89fa7ae6d922ff5b62fca65eab95f35845c069eb (diff) | |
parent | af05a5b1b4eec953c6ee0dc56ffbccda9b3a3dd9 (diff) | |
download | Qt-9b3a87a0f20023b59b3d59807aac69e53be277eb.zip Qt-9b3a87a0f20023b59b3d59807aac69e53be277eb.tar.gz Qt-9b3a87a0f20023b59b3d59807aac69e53be277eb.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'tests/auto/qxmlschema/tst_qxmlschema.cpp')
-rw-r--r-- | tests/auto/qxmlschema/tst_qxmlschema.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qxmlschema/tst_qxmlschema.cpp b/tests/auto/qxmlschema/tst_qxmlschema.cpp index 79f5587..ec91f88 100644 --- a/tests/auto/qxmlschema/tst_qxmlschema.cpp +++ b/tests/auto/qxmlschema/tst_qxmlschema.cpp @@ -357,7 +357,7 @@ void tst_QXmlSchema::messageHandler() const QXmlSchema schema; schema.setMessageHandler(&handler); - QCOMPARE(schema.messageHandler(), &handler); + QCOMPARE(schema.messageHandler(), static_cast<QAbstractMessageHandler *>(&handler)); } } @@ -394,7 +394,7 @@ void tst_QXmlSchema::uriResolver() const QXmlSchema schema; schema.setUriResolver(&resolver); - QCOMPARE(schema.uriResolver(), &resolver); + QCOMPARE(schema.uriResolver(), static_cast<const QAbstractUriResolver *>(&resolver)); } } |