GlobalShortcutsBackend: Fix type return

This commit is contained in:
Jonas Kvinge 2021-09-01 22:37:08 +02:00
parent 20a23c2868
commit b849edfcca
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class GlobalShortcutsBackend : public QObject {
explicit GlobalShortcutsBackend(GlobalShortcutsManager *manager, const Type type, QObject *parent = nullptr);
bool type() const { return type_; }
Type type() const { return type_; }
QString name() const;
virtual bool IsAvailable() const = 0;