Changed: Include Windows headers only under Windows

--HG--
branch : develop
This commit is contained in:
kervala 2016-05-16 11:13:04 +02:00
parent 079ac81c8d
commit db70d04dce

View file

@ -25,6 +25,7 @@
#undef realloc
#endif
#ifdef _WIN32
#include <qt_windows.h>
#include <shlguid.h>
#include <winnls.h>
@ -32,17 +33,12 @@
#include <objbase.h>
#include <objidl.h>
#include <strsafe.h>
#endif
#ifndef _DEBUG
#define QT_NO_DEBUG_OUTPUT
#endif
#include <qglobal.h>
#ifdef Q_COMPILER_RVALUE_REFS
#undef Q_COMPILER_RVALUE_REFS
#endif
#include <QtCore/QtCore>
#include <QtGui/QtGui>
#include <QtNetwork/QtNetwork>