[SCM] ktp-kded-integration-module packaging branch, master, updated. debian/15.12.1-2-382-gbd961c2

Maximiliano Curia maxy at moszumanska.debian.org
Sat May 28 00:15:01 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-kded-module.git;a=commitdiff;h=b09d50d

The following commit has been merged in the master branch:
commit b09d50d33d3eee984d03691e384aee12b174868a
Author: Daniele E. Domenichelli <ddomenichelli at kde.org>
Date:   Thu Mar 7 00:35:02 2013 +0100

    Correctly set error messages to shown
    
    Reviewed-by: David Edmundson <kde at davidemundson.co.uk>
---
 error-handler.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/error-handler.cpp b/error-handler.cpp
index 9e60337..7149f75 100644
--- a/error-handler.cpp
+++ b/error-handler.cpp
@@ -129,10 +129,10 @@ void ErrorHandler::showErrorNotification()
 
     QString errorMessage;
 
-    QHash<Tp::AccountPtr, ConnectionError>::const_iterator i = m_errorMap.constBegin();
+    QHash<Tp::AccountPtr, ConnectionError>::iterator i = m_errorMap.begin();
     while (i != m_errorMap.constEnd()) {
         const Tp::AccountPtr account = i.key();
-        ConnectionError error = i.value();
+        ConnectionError &error = i.value();
 
         //try to group as many error messages as we can, but we still want to give accounts a chance to reconnect
         //only want to show messages that are at least 20 seconds old to give the account a chance to connect.

-- 
ktp-kded-integration-module packaging



More information about the pkg-kde-commits mailing list