From 96d60fb9ceb354124ceede7553a44a0773ab26bf Mon Sep 17 00:00:00 2001 From: codestation Date: Sun, 5 Jan 2014 21:45:40 -0430 Subject: [PATCH] Move stdint.h to header so it can compile under windows. --- src/httpdownloader.cpp | 1 - src/httpdownloader.h | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/httpdownloader.cpp b/src/httpdownloader.cpp index 46a8843..c28672d 100644 --- a/src/httpdownloader.cpp +++ b/src/httpdownloader.cpp @@ -21,7 +21,6 @@ #include -#include #include QNetworkReply *HTTPDownloader::reply = NULL; diff --git a/src/httpdownloader.h b/src/httpdownloader.h index 7146309..f859bc0 100644 --- a/src/httpdownloader.h +++ b/src/httpdownloader.h @@ -25,6 +25,8 @@ #include #include +#include + class HTTPDownloader : public QObject { Q_OBJECT