diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2011-02-21 12:59:06 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2011-02-21 12:59:06 (GMT) |
commit | f559a0fb5f545057256305e47082927621aead0f (patch) | |
tree | 744301902f284238dfc996712031f73e535a81b2 | |
parent | 0f11fc258915a7e0fc3b95a9d585054427c96f7c (diff) | |
download | Qt-f559a0fb5f545057256305e47082927621aead0f.zip Qt-f559a0fb5f545057256305e47082927621aead0f.tar.gz Qt-f559a0fb5f545057256305e47082927621aead0f.tar.bz2 |
QNAM HTTP: Fix compilation 2
-rw-r--r-- | src/network/access/qhttpthreaddelegate.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/network/access/qhttpthreaddelegate.cpp b/src/network/access/qhttpthreaddelegate.cpp index d9db948..16c6c0c 100644 --- a/src/network/access/qhttpthreaddelegate.cpp +++ b/src/network/access/qhttpthreaddelegate.cpp @@ -40,9 +40,15 @@ ****************************************************************************/ #include "qhttpthreaddelegate_p.h" -#include "qthread.h" -#include "private/qnoncontiguousbytedevice_p.h" + +#include <QThread> #include <QTimer> +#include <QAuthenticator> +#include <QEventLoop> + +#include "private/qhttpnetworkreply_p.h" +#include "private/qnetworkaccesscache_p.h" +#include "private/qnoncontiguousbytedevice_p.h" QT_BEGIN_NAMESPACE |