diff options
author | Jan-Arve Sæther <jan-arve.saether@nokia.com> | 2009-12-03 09:25:33 (GMT) |
---|---|---|
committer | Jan-Arve Sæther <jan-arve.saether@nokia.com> | 2009-12-03 09:25:33 (GMT) |
commit | 76f27d01adc17ca157c5f6791b21ba4e4cb851eb (patch) | |
tree | 1d469509014c7f9ae46ff3819c50433438deee53 /doc | |
parent | 39609930e066f93197d518f33e320b58ae7f618b (diff) | |
parent | ae2c3a96519ede274bd3a67566f007b1cba24ff8 (diff) | |
download | Qt-76f27d01adc17ca157c5f6791b21ba4e4cb851eb.zip Qt-76f27d01adc17ca157c5f6791b21ba4e4cb851eb.tar.gz Qt-76f27d01adc17ca157c5f6791b21ba4e4cb851eb.tar.bz2 |
Merge branch '4.6' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into 4.6
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/getting-started/known-issues.qdoc | 20 | ||||
-rw-r--r-- | doc/src/snippets/code/src_corelib_kernel_qvariant.cpp | 1 |
2 files changed, 11 insertions, 10 deletions
diff --git a/doc/src/getting-started/known-issues.qdoc b/doc/src/getting-started/known-issues.qdoc index 6632666..a8de0a1 100644 --- a/doc/src/getting-started/known-issues.qdoc +++ b/doc/src/getting-started/known-issues.qdoc @@ -54,7 +54,7 @@ on the Qt website. An overview of known issues may also be found at: - \l{http://qt.gitorious.org/qt/pages/Qt460BetaKnownIssues} + \l{http://qt.gitorious.org/qt/pages/Qt460KnownIssues} {Known Issues Wiki}. \section1 Installation Issues @@ -134,15 +134,17 @@ currently calls winId() on widgets, which causes whole widget hierarchies to use native window handles. This slows down resizing. - \o Compile error with Intel C++ Compiler. - There seems to be a bug in the Intel compiler wrt too agressive inlining. - The problem will manifest itself during the link phase of QtGui where it - fails with the error that it cannot find QObjectData::~QObjectData(). - See http://bugreports.qt.nokia.com/browse/QTBUG-5145 for updates on this + \o Compile errors with Intel C++ Compiler.\br + There seems to be a bug in the Intel compiler with respect to + over-agressive inlining of code. + The problem will manifest itself during the link phase of QtGui where + it fails with the error that it cannot find QObjectData::~QObjectData(). + See \l{http://bugreports.qt.nokia.com/browse/QTBUG-5145} for updates on this bug. - Also, due to some bugs in webkit, both QtScript and Webkit does not compile. - See http://bugreports.qt.nokia.com/browse/QTBUG-6297 for a workaround for - QtScript. + Also, due to some bugs in WebKit, the QtScript and QtWebKit modules + will not compile. + See \l{http://bugreports.qt.nokia.com/browse/QTBUG-6297} for a + workaround for QtScript. \endlist diff --git a/doc/src/snippets/code/src_corelib_kernel_qvariant.cpp b/doc/src/snippets/code/src_corelib_kernel_qvariant.cpp index 6b9923c..41a9cb3 100644 --- a/doc/src/snippets/code/src_corelib_kernel_qvariant.cpp +++ b/doc/src/snippets/code/src_corelib_kernel_qvariant.cpp @@ -65,7 +65,6 @@ QVariant x, y(QString()), z(QString("")); x.convert(QVariant::Int); // x.isNull() == true // y.isNull() == true, z.isNull() == false -// y.isEmpty() == true, z.isEmpty() == true //! [1] |