summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qobject.h
diff options
context:
space:
mode:
authorStephen Kelly <stephen.kelly@kdab.com>2011-12-23 14:26:59 +0100
committerQt by Nokia <qt-info@nokia.com>2011-12-27 15:57:36 +0100
commit38d640ae6718c75532cb4cbd853e926772ff8f46 (patch)
treeff9f8318d9f782a412cf8cfe1d33a491cb474103 /src/corelib/kernel/qobject.h
parent6bb0fe08d80da01b25c1f2247aa0386e9855d792 (diff)
Fix typos parametter -> parameter.
Change-Id: I0ebb3658477a1afdc1af5f4f6f64f12dc20ace56 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/kernel/qobject.h')
-rw-r--r--src/corelib/kernel/qobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/kernel/qobject.h b/src/corelib/kernel/qobject.h
index 1f7c706741..3ca2e2213d 100644
--- a/src/corelib/kernel/qobject.h
+++ b/src/corelib/kernel/qobject.h
@@ -296,8 +296,8 @@ public:
const QObject *receiver, void **zero)
{
// This is the overload for when one wish to disconnect a signal from any slot. (slot=0)
- // Since the function template parametter cannot be deduced from '0', we use a
- // dummy void ** parametter that must be equal to 0
+ // Since the function template parameter cannot be deduced from '0', we use a
+ // dummy void ** parameter that must be equal to 0
Q_ASSERT(!zero);
typedef QtPrivate::FunctionPointer<Func1> SignalType;
return disconnectImpl(sender, reinterpret_cast<void **>(&signal), receiver, zero,