diff options
Diffstat (limited to 'launcher/pathmatcher')
-rw-r--r-- | launcher/pathmatcher/FSTreeMatcher.h | 2 | ||||
-rw-r--r-- | launcher/pathmatcher/IPathMatcher.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/launcher/pathmatcher/FSTreeMatcher.h b/launcher/pathmatcher/FSTreeMatcher.h index 361924af..b84af294 100644 --- a/launcher/pathmatcher/FSTreeMatcher.h +++ b/launcher/pathmatcher/FSTreeMatcher.h @@ -12,7 +12,7 @@ public: { } - virtual bool matches(const QString &string) const override + bool matches(const QString &string) const override { return m_fsTree.covers(string); } diff --git a/launcher/pathmatcher/IPathMatcher.h b/launcher/pathmatcher/IPathMatcher.h index b60621c9..192782d7 100644 --- a/launcher/pathmatcher/IPathMatcher.h +++ b/launcher/pathmatcher/IPathMatcher.h @@ -1,5 +1,6 @@ #pragma once #include <memory> +#include <QString> class IPathMatcher { |