Convert Windows header names to lowercase

PR #19465.
This commit is contained in:
Victor Chernyakin 2023-08-16 00:29:13 -07:00 committed by GitHub
parent 21b77cb4f8
commit f3f4610ba4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 19 additions and 19 deletions

View File

@ -342,7 +342,7 @@ Example:
// System headers
#ifdef Q_OS_WIN
#include <Windows.h>
#include <windows.h>
#endif
// Boost library headers

View File

@ -37,8 +37,8 @@
#ifdef Q_OS_WIN
#include <memory>
#include <Windows.h>
#include <Shellapi.h>
#include <windows.h>
#include <shellapi.h>
#elif defined(Q_OS_UNIX)
#include <sys/resource.h>
#endif

View File

@ -71,7 +71,7 @@
#include <QtSystemDetection>
#if defined(Q_OS_WIN)
#include <Windows.h>
#include <windows.h>
#endif
#include <QDataStream>

View File

@ -37,7 +37,7 @@
#include <string>
#ifdef Q_OS_WIN
#include <Windows.h>
#include <windows.h>
#include <wincrypt.h>
#include <iphlpapi.h>
#endif

View File

@ -41,7 +41,7 @@
#include <sys/types.h>
#if defined(Q_OS_WIN)
#include <Windows.h>
#include <windows.h>
#elif defined(Q_OS_MACOS) || defined(Q_OS_FREEBSD) || defined(Q_OS_OPENBSD)
#include <sys/param.h>
#include <sys/mount.h>

View File

@ -35,7 +35,7 @@
#include <windows.h>
#include <powrprof.h>
#include <Shlobj.h>
#include <shlobj.h>
#else
#include <sys/types.h>
#include <unistd.h>

View File

@ -31,7 +31,7 @@
#include <QtSystemDetection>
#ifdef Q_OS_WIN
#include <Windows.h>
#include <windows.h>
#endif
#include <QString>

View File

@ -33,8 +33,8 @@
#include <QtSystemDetection>
#ifdef Q_OS_WIN
#include <Windows.h>
#include <Ntsecapi.h>
#include <windows.h>
#include <ntsecapi.h>
#else // Q_OS_WIN
#include <cerrno>
#include <cstdio>

View File

@ -35,8 +35,8 @@
#include <chrono>
#if defined(Q_OS_WIN)
#include <Windows.h>
#include <versionhelpers.h> // must follow after Windows.h
#include <windows.h>
#include <versionhelpers.h> // must follow after windows.h
#endif
#include <QAction>

View File

@ -32,8 +32,8 @@
#include <QtSystemDetection>
#if defined(Q_OS_WIN)
#include <Windows.h>
#include <versionhelpers.h> // must follow after Windows.h
#include <windows.h>
#include <versionhelpers.h> // must follow after windows.h
#endif
#include <QDebug>

View File

@ -38,8 +38,8 @@
#include <QScopeGuard>
#if defined(Q_OS_WIN)
#include <Windows.h>
#include <Shellapi.h>
#include <windows.h>
#include <shellapi.h>
#else
#include <QMimeDatabase>
#include <QMimeType>

View File

@ -31,9 +31,9 @@
#include <QtSystemDetection>
#ifdef Q_OS_WIN
#include <Objbase.h>
#include <Shlobj.h>
#include <Shellapi.h>
#include <objbase.h>
#include <shlobj.h>
#include <shellapi.h>
#endif
#include <QApplication>