Implicit conversion of shortcuts to string is gone.
This only effects compilation with DEBUG_QSHORTCUTMAP. Change-Id: I184e644f2165049336cee8a6ac63a3301cf4c849 Reviewed-by: Marc Mutz <marc.mutz@kdab.com> Reviewed-by: Jan Arve Sæther <jan-arve.saether@digia.com>
This commit is contained in:
parent
69e6029411
commit
f563599a46
@ -679,7 +679,7 @@ void QShortcutMap::dispatchEvent(QKeyEvent *e)
|
|||||||
#if defined(DEBUG_QSHORTCUTMAP)
|
#if defined(DEBUG_QSHORTCUTMAP)
|
||||||
qDebug().nospace()
|
qDebug().nospace()
|
||||||
<< "QShortcutMap::dispatchEvent(): Sending QShortcutEvent(\""
|
<< "QShortcutMap::dispatchEvent(): Sending QShortcutEvent(\""
|
||||||
<< (QString)next->keyseq << "\", " << next->id << ", "
|
<< next->keyseq.toString() << "\", " << next->id << ", "
|
||||||
<< (bool)(enabledShortcuts>1) << ") to object(" << next->owner << ')';
|
<< (bool)(enabledShortcuts>1) << ") to object(" << next->owner << ')';
|
||||||
#endif
|
#endif
|
||||||
QShortcutEvent se(next->keyseq, next->id, enabledShortcuts>1);
|
QShortcutEvent se(next->keyseq, next->id, enabledShortcuts>1);
|
||||||
|
Loading…
Reference in New Issue
Block a user