chore: Action, use auto where possible

This commit is contained in:
sithlord48
2025-04-27 12:49:45 -04:00
committed by Nick Bolton
parent b2ec2f1a34
commit bcfc121c37

View File

@ -12,7 +12,7 @@
QString Action::text() const
{
QString text = QString(m_actionTypeNames.at(keySequence().isMouseButton() ? type() + 6 : type()));
auto text = QString(m_actionTypeNames.at(keySequence().isMouseButton() ? type() + 6 : type()));
switch (type()) {
case keyDown: