Hello community,

here is the log from the commit of package konversation for openSUSE:Factory 
checked in at 2017-03-11 15:18:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/konversation (Old)
 and      /work/SRC/openSUSE:Factory/.konversation.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "konversation"

Sat Mar 11 15:18:32 2017 rev:48 rq:477272 version:1.6.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/konversation/konversation.changes        
2016-08-06 20:35:54.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.konversation.new/konversation.changes   
2017-03-11 15:18:33.268745098 +0100
@@ -1,0 +2,6 @@
+Sun Mar  5 22:46:02 UTC 2017 - fab...@ritter-vogt.de
+
+- Add upstream patch to fix crash on exit:
+  * fix-crash-on-quit.patch
+
+-------------------------------------------------------------------

New:
----
  fix-crash-on-quit.patch

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

Other differences:
------------------
++++++ konversation.spec ++++++
--- /var/tmp/diff_new_pack.RHT7GR/_old  2017-03-11 15:18:33.824666429 +0100
+++ /var/tmp/diff_new_pack.RHT7GR/_new  2017-03-11 15:18:33.828665863 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package konversation
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %if "%{?_kf5_appstreamdir}" == ""
 # it's not defined in Leap 42.1, so define it appropriately in that case
 %define _kf5_appstreamdir %{_kf5_sharedir}/appdata
@@ -28,6 +29,7 @@
 Group:          Productivity/Networking/IRC
 Url:            http://konversation.kde.org/
 Source0:        
http://download.kde.org/stable/%{name}/%{version}/src/%{name}-%{version}.tar.xz
+Patch1:         fix-crash-on-quit.patch
 BuildRequires:  extra-cmake-modules
 BuildRequires:  karchive-devel
 BuildRequires:  kbookmarks-devel
@@ -86,6 +88,7 @@
 
 %prep
 %setup -q
+%patch1 -p1
 
 %build
 %cmake_kf5 -d build

++++++ fix-crash-on-quit.patch ++++++
>From fcafafb5dbd3eff58f0d10282f88525a6e06c640 Mon Sep 17 00:00:00 2001
From: Peter Simonsson <peter.simons...@gmail.com>
Date: Tue, 13 Sep 2016 17:50:36 +0200
Subject: [PATCH] Fix crash on quit

BUG:368682
BUG:364899
---
 src/viewer/irccontextmenus.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: konversation-1.6.2/src/viewer/irccontextmenus.cpp
===================================================================
--- konversation-1.6.2.orig/src/viewer/irccontextmenus.cpp
+++ konversation-1.6.2/src/viewer/irccontextmenus.cpp
@@ -88,6 +88,7 @@ IrcContextMenus::~IrcContextMenus()
     delete m_nickMenu;
     delete m_quickButtonMenu;
     delete m_topicHistoryMenu;
+    delete m_webShortcutsMenu;
 }
 
 IrcContextMenus* IrcContextMenus::self()
@@ -167,7 +168,7 @@ void IrcContextMenus::setupTextMenu()
     action->setData(TextSelectAll);
     m_textMenu->addAction(action);
 
-    m_webShortcutsMenu = new QMenu(m_textMenu);
+    m_webShortcutsMenu = new QMenu();
     
m_webShortcutsMenu->menuAction()->setIcon(QIcon::fromTheme("preferences-web-browser-shortcuts"));
     m_webShortcutsMenu->menuAction()->setVisible(false);
     m_textMenu->addMenu(m_webShortcutsMenu);

Reply via email to