Hello community,

here is the log from the commit of package kontact for openSUSE:Factory checked 
in at 2018-06-05 12:50:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kontact (Old)
 and      /work/SRC/openSUSE:Factory/.kontact.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kontact"

Tue Jun  5 12:50:54 2018 rev:19 rq:614152 version:18.04.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/kontact/kontact.changes  2018-05-16 
11:31:40.837933957 +0200
+++ /work/SRC/openSUSE:Factory/.kontact.new/kontact.changes     2018-06-05 
12:50:55.757994270 +0200
@@ -1,0 +2,6 @@
+Tue Jun  5 07:31:15 UTC 2018 - [email protected]
+
+- Add upstream patch fix-error-window-kontact.patch:
+  * Fix error window being displayed at Kontact start (kde#394767)
+
+-------------------------------------------------------------------

New:
----
  fix-error-window-kontact.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kontact.spec ++++++
--- /var/tmp/diff_new_pack.akLXfn/_old  2018-06-05 12:50:56.525966142 +0200
+++ /var/tmp/diff_new_pack.akLXfn/_new  2018-06-05 12:50:56.533965849 +0200
@@ -30,6 +30,8 @@
 Group:          Productivity/Other
 Url:            http://www.kde.org
 Source0:        %{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM
+Patch0:         fix-error-window-kontact.patch
 BuildRequires:  akonadi-server-devel
 BuildRequires:  extra-cmake-modules
 BuildRequires:  grantleetheme-devel
@@ -73,6 +75,7 @@
 
 %prep
 %setup -q
+%autopatch -p1
 
 %build
 %cmake_kf5 -d build

++++++ fix-error-window-kontact.patch ++++++
>From b78bb7307dab374a5d97aad691c8faf9902db27a Mon Sep 17 00:00:00 2001
From: Laurent Montel <[email protected]>
Date: Mon, 28 May 2018 08:17:20 +0200
Subject: Fix Bug 394767 - Error message at start with Qt 5.11

FIXED-IN: 5.8.2
BUG: 394767
---
 src/webengine/introductionwebenginepage.cpp | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/webengine/introductionwebenginepage.cpp 
b/src/webengine/introductionwebenginepage.cpp
index b08d528..141affb 100644
--- a/src/webengine/introductionwebenginepage.cpp
+++ b/src/webengine/introductionwebenginepage.cpp
@@ -56,6 +56,9 @@ IntroductionWebEnginePage::~IntroductionWebEnginePage()
 
 bool IntroductionWebEnginePage::acceptNavigationRequest(const QUrl &url, 
NavigationType type, bool isMainFrame)
 {
+    if (url.scheme() == QLatin1String("data")) {
+        return true;
+    }
     Q_UNUSED(type);
     Q_UNUSED(isMainFrame);
     Q_EMIT urlClicked(url);
-- 
cgit v0.11.2


Reply via email to