QKeySequenceEdit: make setKeySequence a slot

There's a signal keySequenceChanged(QKeySequence), so the setter
should be a slot, too.

Change-Id: I6591bad071444ffa252a2fdb9ccaf28e8629f59c
Reviewed-by: J-P Nurmi <jpnurmi@digia.com>
Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com>
This commit is contained in:
Marc Mutz 2013-11-09 17:01:07 +01:00 committed by The Qt Project
parent c819a89269
commit 944fe9b8bc

View File

@ -61,9 +61,9 @@ public:
~QKeySequenceEdit();
QKeySequence keySequence() const;
void setKeySequence(const QKeySequence &keySequence);
public Q_SLOTS:
void setKeySequence(const QKeySequence &keySequence);
void clear();
Q_SIGNALS: