summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qsharedpointer.cpp
diff options
context:
space:
mode:
authorLorn Potter <lorn.potter@nokia.com>2010-07-30 00:33:37 (GMT)
committerLorn Potter <lorn.potter@nokia.com>2010-07-30 00:33:37 (GMT)
commit96dc38a1a971b2bb9d62d440943a3d0b2e44fb0c (patch)
tree6e8f0b0b125d0f03529cb0fb07f686d34c6b7daf /src/corelib/tools/qsharedpointer.cpp
parent829833e16644beab6077d07ad80f3a2b148f4e41 (diff)
parent597a842d66dc04181bfd063863216acbb11ce3bc (diff)
downloadQt-96dc38a1a971b2bb9d62d440943a3d0b2e44fb0c.zip
Qt-96dc38a1a971b2bb9d62d440943a3d0b2e44fb0c.tar.gz
Qt-96dc38a1a971b2bb9d62d440943a3d0b2e44fb0c.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7
Diffstat (limited to 'src/corelib/tools/qsharedpointer.cpp')
-rw-r--r--src/corelib/tools/qsharedpointer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qsharedpointer.cpp b/src/corelib/tools/qsharedpointer.cpp
index 1b4b356..f102598 100644
--- a/src/corelib/tools/qsharedpointer.cpp
+++ b/src/corelib/tools/qsharedpointer.cpp
@@ -482,7 +482,7 @@
becomes managed by this QSharedPointer and must not be passed to
another QSharedPointer object or deleted outside this object.
- The \a deleter paramter specifies the custom deleter for this
+ The \a deleter parameter specifies the custom deleter for this
object. The custom deleter is called when the strong reference
count drops to 0 instead of the operator delete(). This is useful,
for instance, for calling deleteLater() in a QObject instead: