Merge pull request #1367 from hosiet/pr-make-qhotkey-header-conditional

Do not include QHotKey header on non-Mac system
This commit is contained in:
borgmanJeremy
2021-02-20 12:47:37 -06:00
committed by GitHub

View File

@@ -16,7 +16,11 @@
// along with Flameshot. If not, see <http://www.gnu.org/licenses/>.
#include "controller.h"
#if defined(Q_OS_MACOS)
#include "external/QHotkey/QHotkey"
#endif
#include "src/config/configwindow.h"
#include "src/core/qguiappcurrentscreen.h"
#include "src/utils/confighandler.h"