TerminalWidget: Fix a warning about no return value

Amends a0c05cabcc

Change-Id: Ieb969f7a6c61469f69e8503089e4985fa8380e3c
Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
Jarek Kobus
2023-12-12 09:38:18 +01:00
parent 83778b5ef5
commit 8d2cee31e4

View File

@@ -635,6 +635,7 @@ void TerminalWidget::initActions(QObject *parent)
return {QKeySequence(QLatin1String("Ctrl+") + key), return {QKeySequence(QLatin1String("Ctrl+") + key),
QKeySequence(QLatin1String("Ctrl+Shift+") + key)}; QKeySequence(QLatin1String("Ctrl+Shift+") + key)};
} }
return {};
}; };
ActionBuilder copyAction(parent, Constants::COPY); ActionBuilder copyAction(parent, Constants::COPY);