summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@nokia.com>2010-08-30 17:53:48 +0200
committerJerome Pasion <jerome.pasion@nokia.com>2010-08-30 17:53:48 +0200
commit8b2fdaf81ed4c52a75fe3a160c20f76a4eaf1d2b (patch)
treeea6de85c9fee2cc7e1ece555793b2483177fb6cf /doc
parentbe69c316c56379d2b955491ffc54754018079dec (diff)
Fixed spelling, broken links, and missing default values.
Tasks: QTBUG-13271, QTBUG-13212, QTBUG-12321 Reviewer: David Boddie
Diffstat (limited to 'doc')
-rw-r--r--doc/src/development/qtestlib.qdoc4
-rw-r--r--doc/src/snippets/code/src_corelib_kernel_qvariant.cpp2
2 files changed, 1 insertions, 5 deletions
diff --git a/doc/src/development/qtestlib.qdoc b/doc/src/development/qtestlib.qdoc
index 50622cd3ac..a83c27e77e 100644
--- a/doc/src/development/qtestlib.qdoc
+++ b/doc/src/development/qtestlib.qdoc
@@ -88,10 +88,6 @@
\o Custom types can easily be added to the test data and test output.
\endtable
- Note: For higher-level GUI and application testing needs, please
- see the \l{Third-Party Tools}{Qt testing products provided by
- Nokia partners}.
-
\section1 QTestLib API
diff --git a/doc/src/snippets/code/src_corelib_kernel_qvariant.cpp b/doc/src/snippets/code/src_corelib_kernel_qvariant.cpp
index fd3f5d2854..472c90e96c 100644
--- a/doc/src/snippets/code/src_corelib_kernel_qvariant.cpp
+++ b/doc/src/snippets/code/src_corelib_kernel_qvariant.cpp
@@ -101,7 +101,7 @@ QVariant v;
MyCustomStruct c;
if (v.canConvert<MyCustomStruct>())
- c = v.value<MyCustomStruct>(v);
+ c = v.value<MyCustomStruct>();
v = 7;
int i = v.value<int>(); // same as v.toInt()