Warning, /graphics/krita/3rdparty/ext_qt/0135-Use-lowercase-name-for-window-header.patch is written in an unsupported language. File is not indexed.

0001 From 2065bb01e9a3235d89834d02ff52f703640aa4e4 Mon Sep 17 00:00:00 2001
0002 From: Samuli Piippo <samuli.piippo@qt.io>
0003 Date: Thu, 7 Mar 2019 15:02:52 +0200
0004 Subject: [PATCH 135/139] Use lowercase name for window header
0005 
0006 Compilation otherwise fails when cross-compiling on linux,
0007 since the filename is is lowercased.
0008 
0009 Change-Id: I0b25f814543b677802cd6f07dc91964547a6028a
0010 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
0011 (cherry picked from commit 587d789fa5929f462b5744ba33a25db6c77b36fc)
0012 Signed-off-by: L. E. Segovia <amy@amyspark.me>
0013 ---
0014  src/qml/jsruntime/qv4functiontable_win64.cpp     | 2 +-
0015  tests/auto/qml/qv4assembler/tst_qv4assembler.cpp | 2 +-
0016  2 files changed, 2 insertions(+), 2 deletions(-)
0017 
0018 diff --git a/src/qml/jsruntime/qv4functiontable_win64.cpp b/src/qml/jsruntime/qv4functiontable_win64.cpp
0019 index bc5b24f6..fc13dc26 100644
0020 --- a/src/qml/jsruntime/qv4functiontable_win64.cpp
0021 +++ b/src/qml/jsruntime/qv4functiontable_win64.cpp
0022 @@ -43,7 +43,7 @@
0023  
0024  #include <QtCore/qdebug.h>
0025  
0026 -#include <Windows.h>
0027 +#include <windows.h>
0028  
0029  QT_BEGIN_NAMESPACE
0030  
0031 diff --git a/tests/auto/qml/qv4assembler/tst_qv4assembler.cpp b/tests/auto/qml/qv4assembler/tst_qv4assembler.cpp
0032 index 61a3e778..fd50ff50 100644
0033 --- a/tests/auto/qml/qv4assembler/tst_qv4assembler.cpp
0034 +++ b/tests/auto/qml/qv4assembler/tst_qv4assembler.cpp
0035 @@ -37,7 +37,7 @@
0036  #include <private/qv4global_p.h>
0037  
0038  #ifdef Q_OS_WIN
0039 -#include <Windows.h>
0040 +#include <windows.h>
0041  #endif
0042  
0043  class tst_QV4Assembler : public QQmlDataTest
0044 -- 
0045 2.37.3
0046