diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-03-29 08:02:05 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-03-29 08:02:05 (GMT) |
commit | aa596c177d733d806f2d4c415d6e679d9ab56c03 (patch) | |
tree | 48ebac3bcc23e85970a89da07fea1820fc95dce1 | |
parent | 473da75ed84651c70ae0d10e23f09e1a0e4ae799 (diff) | |
parent | 780f0cf58d93babd4bbfb5d3d00156a96fc7dacb (diff) | |
download | Qt-aa596c177d733d806f2d4c415d6e679d9ab56c03.zip Qt-aa596c177d733d806f2d4c415d6e679d9ab56c03.tar.gz Qt-aa596c177d733d806f2d4c415d6e679d9ab56c03.tar.bz2 |
Merge branch '4.6' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into 4.6-integration
* '4.6' of scm.dev.nokia.troll.no:qt/oslo-staging-2:
Export QGLContextResource for use with Qt/3D
Use QSKIP rather than commenting a failure.
-rw-r--r-- | src/opengl/qgl_p.h | 2 | ||||
-rw-r--r-- | tests/auto/qfiledialog/tst_qfiledialog.cpp | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/opengl/qgl_p.h b/src/opengl/qgl_p.h index 80217c0..191131e 100644 --- a/src/opengl/qgl_p.h +++ b/src/opengl/qgl_p.h @@ -578,7 +578,7 @@ inline GLenum qt_gl_preferredTextureTarget() } // One resource per group of shared contexts. -class Q_AUTOTEST_EXPORT QGLContextResource +class Q_OPENGL_EXPORT QGLContextResource { public: typedef void (*FreeFunc)(void *); diff --git a/tests/auto/qfiledialog/tst_qfiledialog.cpp b/tests/auto/qfiledialog/tst_qfiledialog.cpp index f246750..9adb4fc 100644 --- a/tests/auto/qfiledialog/tst_qfiledialog.cpp +++ b/tests/auto/qfiledialog/tst_qfiledialog.cpp @@ -547,6 +547,9 @@ void tst_QFiledialog::completer() // ### FIXME: This will fail on Symbian on some tests and some environments until the file engine and QFileSystemModel // are fixed to properly capitalize paths, so that some folders are not duplicated in QFileSystemModel. +#if defined(Q_OS_SYMBIAN) + QSKIP("This will fail on Symbian on some tests and some environments until the file engine and QFileSystemModel are fixed to properly capitalize paths") +#endif QTRY_COMPARE(cModel->rowCount(), expected); } QT_CATCH(...) { qDeleteAll(files); |