summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@theqtcompany.com>2016-04-08 11:50:17 +0200
committerKai Koehne <kai.koehne@theqtcompany.com>2016-04-11 14:23:30 +0000
commitbae703a3f53126a8baac5ef957662e62ce00344a (patch)
treefdaab574bb5853a1d200f7feb6481c2199db77ee
parent10fa7000ece0a775b90cb574070685ba8e668f4e (diff)
Fix compilation error with missing include
I could not reproduce the issue, nor the CI. Anyhow, it doesn't hurt to include the header explicitly, instead of relying on indirect includes. Task-number: QTBUG-52460 Change-Id: I78d04f3af853aa5951cdfc066089f06f71f72988 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
-rw-r--r--src/core/media_capture_devices_dispatcher.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/media_capture_devices_dispatcher.cpp b/src/core/media_capture_devices_dispatcher.cpp
index b31d22a76..dcccd72fb 100644
--- a/src/core/media_capture_devices_dispatcher.cpp
+++ b/src/core/media_capture_devices_dispatcher.cpp
@@ -58,6 +58,8 @@
#include "media/audio/audio_manager_base.h"
#include "ui/base/l10n/l10n_util.h"
+#include <QtCore/qcoreapplication.h>
+
namespace QtWebEngineCore {
using content::BrowserThread;