Skip to content

Commit

Permalink
Add missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
till213 committed May 5, 2024
1 parent ff299c7 commit ee01bfc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include <QByteArray>
#include <QKeySequence>
#include <QFlags>
#include <QStringList>
#ifdef DEBUG
#include <QDebug>
#endif
Expand Down Expand Up @@ -324,7 +325,7 @@ QByteArray InputEvent::toMSFSShortcut(const QKeySequence &sequence) const noexce
}
shortcut.append(msfsKey);
} else {
QStringList keys = sequence.toString().split('+');
const auto keys = sequence.toString().split('+');
shortcut.append(keys.last().toLatin1());
}
#ifdef DEBUG
Expand Down

0 comments on commit ee01bfc

Please sign in to comment.