summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qshortcutmap_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/kernel/qshortcutmap_p.h')
-rw-r--r--src/gui/kernel/qshortcutmap_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/kernel/qshortcutmap_p.h b/src/gui/kernel/qshortcutmap_p.h
index aa3dd969f0..ff92a38e56 100644
--- a/src/gui/kernel/qshortcutmap_p.h
+++ b/src/gui/kernel/qshortcutmap_p.h
@@ -53,7 +53,7 @@
#include <QtGui/private/qtguiglobal_p.h>
#include "QtGui/qkeysequence.h"
-#include "QtCore/qvector.h"
+#include "QtCore/qlist.h"
#include "QtCore/qscopedpointer.h"
QT_REQUIRE_CONFIG(shortcut);
@@ -98,9 +98,9 @@ private:
QKeySequence::SequenceMatch find(QKeyEvent *e, int ignoredModifiers = 0);
QKeySequence::SequenceMatch matches(const QKeySequence &seq1, const QKeySequence &seq2) const;
- QVector<const QShortcutEntry *> matches() const;
- void createNewSequences(QKeyEvent *e, QVector<QKeySequence> &ksl, int ignoredModifiers);
- void clearSequence(QVector<QKeySequence> &ksl);
+ QList<const QShortcutEntry *> matches() const;
+ void createNewSequences(QKeyEvent *e, QList<QKeySequence> &ksl, int ignoredModifiers);
+ void clearSequence(QList<QKeySequence> &ksl);
int translateModifiers(Qt::KeyboardModifiers modifiers);
QScopedPointer<QShortcutMapPrivate> d_ptr;