summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/src/objectmodel
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2017-03-01 15:50:44 +0100
committerOlivier Goffart (Woboq GmbH) <ogoffart@woboq.com>2017-03-01 19:30:10 +0000
commitb41492d53e733e12351338e03ad471d39d81c0b1 (patch)
treee41b6fa930e6229c083a46e20812ab6bf1562565 /src/corelib/doc/src/objectmodel
parenta43670a889274431066d9390825c852fbbe14240 (diff)
Doc: Remove references to pre-C++11 recommendations
Compiler support for lambda functions and variadic templates is required since Qt 5.7, so no need to mention in the documentation what happens if the compiler doesn't support it. Change-Id: I5caeaa0bd7f0edce81e22e22964e0b7dd042c719 Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
Diffstat (limited to 'src/corelib/doc/src/objectmodel')
-rw-r--r--src/corelib/doc/src/objectmodel/signalsandslots.qdoc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/corelib/doc/src/objectmodel/signalsandslots.qdoc b/src/corelib/doc/src/objectmodel/signalsandslots.qdoc
index 6366350cde..ed61511c62 100644
--- a/src/corelib/doc/src/objectmodel/signalsandslots.qdoc
+++ b/src/corelib/doc/src/objectmodel/signalsandslots.qdoc
@@ -364,9 +364,6 @@
connect(sender, &QObject::destroyed, [=](){ this->m_objects.remove(sender); });
\endcode
- Note that if your compiler does not support C++11 variadic templates,
- this syntax only works if the signal and slot have 6 arguments or less.
-
The other way to connect a signal to a slot is to use QObject::connect()
and the \c{SIGNAL} and \c{SLOT} macros.
The rule about whether to