[SCM] kdeconnect packaging branch, master, updated. debian/0.9g-1-1183-g9d69498

Maximiliano Curia maxy at moszumanska.debian.org
Fri Oct 14 14:26:58 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/kdeconnect.git;a=commitdiff;h=028fc30

The following commit has been merged in the master branch:
commit 028fc3047065e44d88c2d5550e92b6cf2dcfb3f8
Author: Simon Cadman <src at niftiestsoftware.com>
Date:   Fri Sep 13 19:20:24 2013 +0200

    SMS message notification didn't show any text
    
    QString content was shadowing a previously declared variable
    
    BUG: 324857
---
 kded/plugins/telephony/telephonyplugin.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kded/plugins/telephony/telephonyplugin.cpp b/kded/plugins/telephony/telephonyplugin.cpp
index ecc2b71..ab5c807 100644
--- a/kded/plugins/telephony/telephonyplugin.cpp
+++ b/kded/plugins/telephony/telephonyplugin.cpp
@@ -55,8 +55,8 @@ KNotification* TelephonyPlugin::createNotification(const NetworkPackage& np)
     } else if (event == "sms") {
         type = "smsReceived";
         icon = "mail-receive";
-        QString content = np.get<QString>("messageBody","");
-        content = i18n("SMS from %1: %2", phoneNumber, content);
+        QString messageBody = np.get<QString>("messageBody","");
+        content = i18n("SMS from %1: %2", phoneNumber, messageBody);
     } else if (event == "talking") {
         return NULL;
     } else {

-- 
kdeconnect packaging



More information about the pkg-kde-commits mailing list