convert includes like <Windows.h> to lowercase

There is header file windows.h, not Windows.h.
MinGW on Linux build machine is filename case-sensitive.
This commit is contained in:
Boris Nagaev 2016-01-05 23:29:26 +03:00 committed by sledgehammer999
parent a570bd5e2c
commit d513d002cc
5 changed files with 5 additions and 5 deletions

View file

@ -40,7 +40,7 @@
#endif
#ifdef Q_OS_WIN
#include <Windows.h>
#include <windows.h>
#endif
PowerManagement::PowerManagement(QObject *parent) : QObject(parent), m_busy(false)