-
Notifications
You must be signed in to change notification settings - Fork 1.2k
merge bitcoin#17227...#23580: Qt 5.12.10 #4581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
doesn't build
5456054
to
5b5e138
Compare
Closing this for now as it's causing confusion and PR won't be needed till Qt5.12 bump. |
This pull request has conflicts, please rebase. |
This pull request has conflicts, please rebase. |
This pull request has conflicts, please rebase. |
This pull request has conflicts, please rebase. |
This pull request has conflicts, please rebase. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK for merging via merge commit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK (tested on macOS 12.3.1, x86)
(there are few nits which can be fixed later but works as expected otherwise)
From: Øystein Heskestad <oystein.heskestad@qt.io> | ||
Date: Wed, 27 Oct 2021 13:07:46 +0200 | ||
Subject: [PATCH] Add missing macOS header file that was indirectly included before | ||
|
||
See: https://bugreports.qt.io/browse/QTBUG-97855 | ||
|
||
Upstream Commits: | ||
- Qt 6.2: c884bf138a21dd7320e35cef34d24e22e74d7ce0 | ||
|
||
diff --git a/qtbase/src/plugins/platforms/cocoa/qiosurfacegraphicsbuffer.h b/qtbase/src/plugins/platforms/cocoa/qiosurfacegraphicsbuffer.h | ||
index e070ba977d..0896917334 100644 | ||
--- a/qtbase/src/plugins/platforms/cocoa/qiosurfacegraphicsbuffer.h | ||
+++ b/qtbase/src/plugins/platforms/cocoa/qiosurfacegraphicsbuffer.h | ||
@@ -43,6 +43,8 @@ | ||
#include <qpa/qplatformgraphicsbuffer.h> | ||
#include <private/qcore_mac_p.h> | ||
|
||
+#include <CoreGraphics/CGColorSpace.h> | ||
+ | ||
QT_BEGIN_NAMESPACE | ||
|
||
class QIOSurfaceGraphicsBuffer : public QPlatformGraphicsBuffer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
23580: the patch is similar to the one in upstream but it's a bit different
@@ -321,7 +321,8 @@ void AddressBookPage::on_exportButton_clicked() | |||
|
|||
if(!writer.write()) { | |||
QMessageBox::critical(this, tr("Exporting Failed"), | |||
tr("There was an error trying to save the address list to %1. Please try again.").arg(filename)); | |||
//: %1 is a name of the file (e.g., "addrbook.csv") that the bitcoin addresses were exported to. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
21694: need to dashify
Relies on #4681 so that af88980 can be avoided