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
parent e07562beae
commit 4706733846
5 changed files with 5 additions and 5 deletions

View file

@ -37,7 +37,7 @@
#ifndef DISABLE_GUI
#include "gui/guiiconprovider.h"
#ifdef Q_OS_WIN
#include <Windows.h>
#include <windows.h>
#include <QSharedMemory>
#include <QSessionManager>
#endif // Q_OS_WIN

View file

@ -43,7 +43,7 @@
#include <boost/bind.hpp>
#ifdef Q_OS_WIN
#include <Windows.h>
#include <windows.h>
#endif
#include "base/logger.h"

View file

@ -47,7 +47,7 @@
#endif
#ifdef Q_OS_WIN
#include <ShlObj.h>
#include <shlobj.h>
#include <winreg.h>
#endif

View file

@ -48,7 +48,7 @@
#ifdef Q_OS_WIN
#include <windows.h>
#include <PowrProf.h>
#include <powrprof.h>
const int UNLEN = 256;
#else
#include <unistd.h>

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)