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

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


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

The following commit has been merged in the master branch:
commit 5322bf45cbb9c1b29c492644264b20e1a6f1147d
Author: Ashish Bansal <bansal.ashish096 at gmail.com>
Date:   Tue Mar 31 20:02:19 2015 -0700

    Show Transfer failed instead of Transfer finished when it fails.
    
    REVIEW: 123199
---
 plugins/share/shareplugin.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/share/shareplugin.cpp b/plugins/share/shareplugin.cpp
index f2a4f98..c6c97b3 100644
--- a/plugins/share/shareplugin.cpp
+++ b/plugins/share/shareplugin.cpp
@@ -168,7 +168,7 @@ void SharePlugin::finished(KJob* job)
     KNotification* notification = new KNotification("transferReceived");
     notification->setIconName(error ? QStringLiteral("dialog-error") : QStringLiteral("dialog-ok"));
     notification->setComponentName("kdeconnect");
-    notification->setTitle(i18n("Transfer Finished"));
+    notification->setTitle(error ? i18n("Transfer Failed") : i18n("Transfer Finished"));
     notification->setText(transferJob->destination().fileName());
     notification->setActions(QStringList(i18n("Open")));
     connect(notification, &KNotification::action1Activated, this, &SharePlugin::openDestinationFolder);

-- 
kdeconnect packaging



More information about the pkg-kde-commits mailing list