diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-10-15 18:52:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 18:52:22 -0400 |
commit | 41b404753648b74d264bbfb935927319a550d0bb (patch) | |
tree | 39e1071efd04a5718c7a385560c8f6f2886c55b2 /src | |
parent | de8157128912c3a4c160fb75c94ac9be7b107b98 (diff) | |
parent | 2b622411fd665b45fdaa3fb66d14bb662498e10b (diff) |
Merge pull request #7188 from Morph1984/web-applet-include
qt_web_browser: Add missing QApplication include
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/applets/qt_web_browser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/applets/qt_web_browser.cpp b/src/yuzu/applets/qt_web_browser.cpp index 7d433ca50..da8c6882a 100644 --- a/src/yuzu/applets/qt_web_browser.cpp +++ b/src/yuzu/applets/qt_web_browser.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #ifdef YUZU_USE_QT_WEB_ENGINE +#include <QApplication> #include <QKeyEvent> #include <QWebEngineProfile> |