diff options
author | Mårten Nordheim <[email protected]> | 2022-03-18 12:38:54 +0100 |
---|---|---|
committer | Mårten Nordheim <[email protected]> | 2022-03-18 17:35:03 +0000 |
commit | 82296d31933436fd155af6d3809b5f10e3779aa6 (patch) | |
tree | d3cdc2ef5148ccc962ea393d861dc00211ffddc9 | |
parent | 30830e0cbad58f8efe034256bb2cf094f6f483ae (diff) |
Add missing includes for some of our _win.cpp files
Change-Id: I74067f5d50bea6fbc16576c26bf84f91e449e497
Reviewed-by: Fabian Kosmale <[email protected]>
-rw-r--r-- | src/network/kernel/qnetworkproxy_win.cpp | 2 | ||||
-rw-r--r-- | src/network/socket/qnativesocketengine_win.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/network/kernel/qnetworkproxy_win.cpp b/src/network/kernel/qnetworkproxy_win.cpp index b633cd9bbdb..514b26adc9c 100644 --- a/src/network/kernel/qnetworkproxy_win.cpp +++ b/src/network/kernel/qnetworkproxy_win.cpp @@ -47,6 +47,8 @@ #include <qurl.h> #include <qnetworkinterface.h> #include <qdebug.h> +#include <qvarlengtharray.h> +#include <qhash.h> #include <string.h> #include <qt_windows.h> diff --git a/src/network/socket/qnativesocketengine_win.cpp b/src/network/socket/qnativesocketengine_win.cpp index 704c10b0440..ce2e0e0e1df 100644 --- a/src/network/socket/qnativesocketengine_win.cpp +++ b/src/network/socket/qnativesocketengine_win.cpp @@ -52,6 +52,7 @@ #include <qdatetime.h> #include <qnetworkinterface.h> #include <qoperatingsystemversion.h> +#include <qvarlengtharray.h> #include <algorithm> |