#include <QtCore/qnamespace.h>
#include <QtCore/qstring.h>
Go to the source code of this file.
◆ operator<<() [1/2]
Definition at line 1720 of file qkeysequence.cpp.
Referenced by QKeySequence::data_ptr().
1723 list << keysequence.
d->key[0];
1725 if (s.version() >= 5 && keysequence.count() > 1) {
1726 list << keysequence.
d->key[1];
1727 list << keysequence.
d->key[2];
1728 list << keysequence.
d->key[3];
The QList class is a template class that provides lists.
◆ operator<<() [2/2]
Definition at line 1759 of file qkeysequence.cpp.
1761 #ifndef Q_BROKEN_DEBUG_STREAM 1762 dbg.nospace() <<
"QKeySequence(" << p.toString() <<
')';
1765 qWarning(
"This compiler doesn't support streaming QKeySequence to QDebug");
Q_CORE_EXPORT void qWarning(const char *,...)
#define Q_UNUSED(x)
Indicates to the compiler that the parameter with the specified name is not used in the body of a fun...
◆ operator>>()
Definition at line 1746 of file qkeysequence.cpp.
1751 for (
int i = 0; i < 4; ++i)
1752 keysequence.
d->key[i] = list.value(i);
void qAtomicDetach(T *&d)
This is a helper for the detach method of implicitly shared classes.
The QList class is a template class that provides lists.
◆ Q_DECLARE_TYPEINFO()
◆ qt_set_sequence_auto_mnemonic()
void qt_set_sequence_auto_mnemonic |
( |
bool |
b | ) |
|