Fix ### Qt5 for QKeySequence
Change-Id: I32e582d264991e4a42e4ca6678d477835d15dbce Reviewed-by: Robin Burchell <robin+qt@viroteck.net> Reviewed-by: Gunnar Sletta <gunnar.sletta@nokia.com>
This commit is contained in:
parent
445c4cb011
commit
bf805455d4
@ -1040,7 +1040,7 @@ void QKeySequence::setKey(int key, int index)
|
||||
Returns the number of keys in the key sequence.
|
||||
The maximum is 4.
|
||||
*/
|
||||
uint QKeySequence::count() const
|
||||
int QKeySequence::count() const
|
||||
{
|
||||
if (!d->key[0])
|
||||
return 0;
|
||||
@ -1478,7 +1478,8 @@ QKeySequence::SequenceMatch QKeySequence::matches(const QKeySequence &seq) const
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
/*! \fn QKeySequence::operator QString() const
|
||||
|
||||
\obsolete
|
||||
|
||||
Use toString() instead.
|
||||
@ -1487,10 +1488,6 @@ QKeySequence::SequenceMatch QKeySequence::matches(const QKeySequence &seq) const
|
||||
calling toString(QKeySequence::NativeText). Note that the
|
||||
result is not platform independent.
|
||||
*/
|
||||
QKeySequence::operator QString() const
|
||||
{
|
||||
return QKeySequence::toString(QKeySequence::NativeText);
|
||||
}
|
||||
|
||||
/*!
|
||||
Returns the key sequence as a QVariant
|
||||
@ -1500,18 +1497,12 @@ QKeySequence::operator QVariant() const
|
||||
return QVariant(QVariant::KeySequence, this);
|
||||
}
|
||||
|
||||
/*!
|
||||
/*! \fn QKeySequence::operator int () const
|
||||
|
||||
\obsolete
|
||||
For backward compatibility: returns the first keycode
|
||||
as integer. If the key sequence is empty, 0 is returned.
|
||||
*/
|
||||
QKeySequence::operator int () const
|
||||
{
|
||||
if (1 <= count())
|
||||
return d->key[0];
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
Returns a reference to the element at position \a index in the key
|
||||
|
@ -154,7 +154,7 @@ public:
|
||||
QKeySequence(StandardKey key);
|
||||
~QKeySequence();
|
||||
|
||||
uint count() const; // ### Qt 5: return 'int'
|
||||
int count() const;
|
||||
bool isEmpty() const;
|
||||
|
||||
enum SequenceMatch {
|
||||
@ -170,10 +170,11 @@ public:
|
||||
static QKeySequence mnemonic(const QString &text);
|
||||
static QList<QKeySequence> keyBindings(StandardKey key);
|
||||
|
||||
// ### Qt 5: kill 'operator QString' - it's evil
|
||||
operator QString() const;
|
||||
#if QT_DEPRECATED_SINCE(5, 0)
|
||||
QT_DEPRECATED operator QString() const { return toString(QKeySequence::NativeText); }
|
||||
QT_DEPRECATED operator int() const { if (1 <= count()) return operator [](0); return 0; }
|
||||
#endif
|
||||
operator QVariant() const;
|
||||
operator int() const;
|
||||
int operator[](uint i) const;
|
||||
QKeySequence &operator=(const QKeySequence &other);
|
||||
#ifdef Q_COMPILER_RVALUE_REFS
|
||||
|
Loading…
Reference in New Issue
Block a user