diff options
author | Petr Mrázek <peterix@gmail.com> | 2021-11-03 15:45:42 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2021-11-03 15:45:42 +0100 |
commit | 7b4c52e1e32803a6a9c6c19cfa3becf4f2dc623c (patch) | |
tree | 843c4b1a58de6d99f565527fb05dab248eecd306 /launcher/pathmatcher | |
parent | 27f276ef13f49b4d21b6c17db5d4cd5e404ea259 (diff) | |
download | PrismLauncher-7b4c52e1e32803a6a9c6c19cfa3becf4f2dc623c.tar.gz PrismLauncher-7b4c52e1e32803a6a9c6c19cfa3becf4f2dc623c.tar.bz2 PrismLauncher-7b4c52e1e32803a6a9c6c19cfa3becf4f2dc623c.zip |
NOISSUE fix some small build issues
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 { |