Remove AutoCompatConnection
The default type when Qt 3 support is enabled. Same as AutoConnection but will also cause warnings to be output in certain situations. Change-Id: I64bf3c39a740afb716820bfd3173936fda213f4a Reviewed-by: Olivier Goffart <ogoffart@woboq.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
This commit is contained in:
parent
a5a80da223
commit
5e80eb7917
@ -1193,7 +1193,6 @@ public:
|
|||||||
AutoConnection,
|
AutoConnection,
|
||||||
DirectConnection,
|
DirectConnection,
|
||||||
QueuedConnection,
|
QueuedConnection,
|
||||||
AutoCompatConnection,
|
|
||||||
BlockingQueuedConnection,
|
BlockingQueuedConnection,
|
||||||
UniqueConnection = 0x80
|
UniqueConnection = 0x80
|
||||||
};
|
};
|
||||||
|
@ -537,13 +537,6 @@
|
|||||||
same pair of objects, then the connection will fail. This
|
same pair of objects, then the connection will fail. This
|
||||||
connection type was introduced in Qt 4.6.
|
connection type was introduced in Qt 4.6.
|
||||||
|
|
||||||
\value AutoCompatConnection
|
|
||||||
The default type when Qt 3 support is enabled. Same as
|
|
||||||
AutoConnection but will also cause warnings to be output in
|
|
||||||
certain situations. See \l{Porting to Qt 4#Compatibility
|
|
||||||
Signals and Slots}{Compatibility Signals and Slots} for
|
|
||||||
further information.
|
|
||||||
|
|
||||||
With queued connections, the parameters must be of types that are
|
With queued connections, the parameters must be of types that are
|
||||||
known to Qt's meta-object system, because Qt needs to copy the
|
known to Qt's meta-object system, because Qt needs to copy the
|
||||||
arguments to store them in an event behind the scenes. If you try
|
arguments to store them in an event behind the scenes. If you try
|
||||||
|
@ -2337,16 +2337,6 @@ QMetaObject::Connection QObject::connect(const QObject *sender, const char *sign
|
|||||||
const QObject *receiver, const char *method,
|
const QObject *receiver, const char *method,
|
||||||
Qt::ConnectionType type)
|
Qt::ConnectionType type)
|
||||||
{
|
{
|
||||||
#ifndef QT_NO_DEBUG
|
|
||||||
bool warnCompat = true;
|
|
||||||
#endif
|
|
||||||
if (type == Qt::AutoCompatConnection) {
|
|
||||||
type = Qt::AutoConnection;
|
|
||||||
#ifndef QT_NO_DEBUG
|
|
||||||
warnCompat = false;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sender == 0 || receiver == 0 || signal == 0 || method == 0) {
|
if (sender == 0 || receiver == 0 || signal == 0 || method == 0) {
|
||||||
qWarning("QObject::connect: Cannot connect %s::%s to %s::%s",
|
qWarning("QObject::connect: Cannot connect %s::%s to %s::%s",
|
||||||
sender ? sender->metaObject()->className() : "(null)",
|
sender ? sender->metaObject()->className() : "(null)",
|
||||||
@ -2455,11 +2445,9 @@ QMetaObject::Connection QObject::connect(const QObject *sender, const char *sign
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifndef QT_NO_DEBUG
|
#ifndef QT_NO_DEBUG
|
||||||
if (warnCompat) {
|
QMetaMethod smethod = smeta->method(signal_absolute_index);
|
||||||
QMetaMethod smethod = smeta->method(signal_absolute_index);
|
QMetaMethod rmethod = rmeta->method(method_index_relative + rmeta->methodOffset());
|
||||||
QMetaMethod rmethod = rmeta->method(method_index_relative + rmeta->methodOffset());
|
check_and_warn_compat(smeta, smethod, rmeta, rmethod);
|
||||||
check_and_warn_compat(smeta, smethod, rmeta, rmethod);
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
QMetaObject::Connection handle = QMetaObject::Connection(QMetaObjectPrivate::connect(
|
QMetaObject::Connection handle = QMetaObject::Connection(QMetaObjectPrivate::connect(
|
||||||
sender, signal_index, receiver, method_index_relative, rmeta ,type, types));
|
sender, signal_index, receiver, method_index_relative, rmeta ,type, types));
|
||||||
@ -2494,16 +2482,6 @@ QMetaObject::Connection QObject::connect(const QObject *sender, const QMetaMetho
|
|||||||
const QObject *receiver, const QMetaMethod &method,
|
const QObject *receiver, const QMetaMethod &method,
|
||||||
Qt::ConnectionType type)
|
Qt::ConnectionType type)
|
||||||
{
|
{
|
||||||
#ifndef QT_NO_DEBUG
|
|
||||||
bool warnCompat = true;
|
|
||||||
#endif
|
|
||||||
if (type == Qt::AutoCompatConnection) {
|
|
||||||
type = Qt::AutoConnection;
|
|
||||||
#ifndef QT_NO_DEBUG
|
|
||||||
warnCompat = false;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sender == 0
|
if (sender == 0
|
||||||
|| receiver == 0
|
|| receiver == 0
|
||||||
|| signal.methodType() != QMetaMethod::Signal
|
|| signal.methodType() != QMetaMethod::Signal
|
||||||
@ -2557,8 +2535,7 @@ QMetaObject::Connection QObject::connect(const QObject *sender, const QMetaMetho
|
|||||||
return QMetaObject::Connection(0);
|
return QMetaObject::Connection(0);
|
||||||
|
|
||||||
#ifndef QT_NO_DEBUG
|
#ifndef QT_NO_DEBUG
|
||||||
if (warnCompat)
|
check_and_warn_compat(smeta, signal, rmeta, method);
|
||||||
check_and_warn_compat(smeta, signal, rmeta, method);
|
|
||||||
#endif
|
#endif
|
||||||
QMetaObject::Connection handle = QMetaObject::Connection(QMetaObjectPrivate::connect(
|
QMetaObject::Connection handle = QMetaObject::Connection(QMetaObjectPrivate::connect(
|
||||||
sender, signal_index, receiver, method_index, 0, type, types));
|
sender, signal_index, receiver, method_index, 0, type, types));
|
||||||
|
Loading…
Reference in New Issue
Block a user