[SCM] ktp-text-ui packaging branch, master, updated. debian/15.12.1-1-1918-gdf4b0ec

Maximiliano Curia maxy at moszumanska.debian.org
Sat May 28 00:21:13 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-text-ui.git;a=commitdiff;h=e2153dd

The following commit has been merged in the master branch:
commit e2153ddfdea5c7c5b29ce19ed64062934969985c
Author: David Edmundson <kde at davidedmundson.co.uk>
Date:   Mon Feb 13 09:03:52 2012 +0000

    Fix memory leak in plasmoid
---
 plasmoid/declarative-plugin/conversations-model.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plasmoid/declarative-plugin/conversations-model.cpp b/plasmoid/declarative-plugin/conversations-model.cpp
index 74745f4..9424f0f 100644
--- a/plasmoid/declarative-plugin/conversations-model.cpp
+++ b/plasmoid/declarative-plugin/conversations-model.cpp
@@ -126,7 +126,7 @@ void ConversationsModel::handleChannels(const Tp::MethodInvocationContextPtr<> &
 
     if (!handled && !shouldDelegate) {
         beginInsertRows(QModelIndex(), rowCount(), rowCount());
-        Conversation* newConvo = new Conversation(textChannel, account);
+        Conversation* newConvo = new Conversation(textChannel, account, this);
         d->conversations.append(newConvo);
         connect(newConvo, SIGNAL(validityChanged(bool)), SLOT(handleValidityChange(bool)));
         endInsertRows();

-- 
ktp-text-ui packaging



More information about the pkg-kde-commits mailing list