diff options
| author | Thomas Tanner <trtanner@btinternet.com> | 2015-12-31 23:08:24 +0000 |
|---|---|---|
| committer | Thomas Tanner <trtanner@btinternet.com> | 2015-12-31 23:08:24 +0000 |
| commit | d07b4f7ff00b1113809c7824e7cd17518d92dc6b (patch) | |
| tree | 157ded41c8f7147b0622aeab87ae05dcac71b8a7 /src/selfupdater.h | |
| parent | 197c49e996ba6f1284a7b7369b294000450b4453 (diff) | |
Fixes an issue with doing connect for download cancel at the wrong time
Also cleaned up header usage per include-what-you-use
Diffstat (limited to 'src/selfupdater.h')
| -rw-r--r-- | src/selfupdater.h | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/src/selfupdater.h b/src/selfupdater.h index 446778fb..37021b42 100644 --- a/src/selfupdater.h +++ b/src/selfupdater.h @@ -21,17 +21,20 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #define SELFUPDATER_H
-#include <archive.h>
#include <versioninfo.h>
-#include <QObject>
-#include <QNetworkReply>
-#include <QFile>
-#include <QProgressDialog>
-
+class Archive;
+class NexusInterface;
namespace MOBase { class IPluginGame; }
-class NexusInterface;
+#include <QFile>
+#include <QObject>
+#include <QString>
+#include <QVariant>
+#include <QtGlobal> //for qint64
+
+class QNetworkReply;
+class QProgressDialog;
/**
|
