Gentoo Archives: gentoo-commits

From: Jory Pratt <anarchy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/mozilla:master commit in: www-client/firefox/files/
Date: Sat, 28 Jan 2017 00:32:56
Message-Id: 1485563546.b427f79d582968b51d0b08f3ab731689c8f4e788.anarchy@gentoo
1 commit: b427f79d582968b51d0b08f3ab731689c8f4e788
2 Author: Jory A. Pratt <anarchy <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 28 00:32:26 2017 +0000
4 Commit: Jory Pratt <anarchy <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 28 00:32:26 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=b427f79d
7
8 www-client/firefox - remove qt patch, qt support stripped in 50.x
9
10 .../firefox/files/firefox-45-qt-widget-fix.patch | 21 ---------------------
11 1 file changed, 21 deletions(-)
12
13 diff --git a/www-client/firefox/files/firefox-45-qt-widget-fix.patch b/www-client/firefox/files/firefox-45-qt-widget-fix.patch
14 deleted file mode 100644
15 index 339bec0..0000000
16 --- a/www-client/firefox/files/firefox-45-qt-widget-fix.patch
17 +++ /dev/null
18 @@ -1,21 +0,0 @@
19 ---- a/widget/qt/nsWindow.cpp 2016-02-01 17:41:02.000000000 -0500
20 -+++ b/widget/qt/nsWindow.cpp 2016-02-04 11:22:02.369759044 -0500
21 -@@ -594,17 +594,17 @@
22 - }
23 -
24 - NS_IMETHODIMP
25 - nsWindow::ConfigureChildren(const nsTArray<nsIWidget::Configuration>& aConfigurations)
26 - {
27 - for (uint32_t i = 0; i < aConfigurations.Length(); ++i) {
28 - const Configuration& configuration = aConfigurations[i];
29 -
30 -- nsWindow* w = static_cast<nsWindow*>(configuration.mChild);
31 -+ nsWindow* w = static_cast<nsWindow*>(configuration.mChild.get());
32 - NS_ASSERTION(w->GetParent() == this,
33 - "Configured widget is not a child");
34 -
35 - LayoutDeviceIntRect wBounds =
36 - LayoutDeviceIntRect::FromUnknownRect(w->mBounds);
37 - if (wBounds.Size() != configuration.mBounds.Size()) {
38 - w->Resize(configuration.mBounds.x, configuration.mBounds.y,
39 - configuration.mBounds.width, configuration.mBounds.height,