Browse Source

Merge pull request #4505 from starius/windows-header-lowercase

convert includes like <Windows.h> to lowercase
adaptive-webui-19844
sledgehammer999 9 years ago
parent
commit
c75d6fd2b5
  1. 2
      src/app/application.cpp
  2. 2
      src/base/bittorrent/torrenthandle.cpp
  3. 2
      src/base/preferences.cpp
  4. 2
      src/base/utils/misc.cpp
  5. 2
      src/gui/powermanagement/powermanagement.cpp

2
src/app/application.cpp

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

2
src/base/bittorrent/torrenthandle.cpp

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

2
src/base/preferences.cpp

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

2
src/base/utils/misc.cpp

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

2
src/gui/powermanagement/powermanagement.cpp

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

Loading…
Cancel
Save