[SCM] kdeconnect packaging branch, master, updated. debian/0.9g-1-1183-g9d69498
Maximiliano Curia
maxy at moszumanska.debian.org
Fri Oct 14 14:28:14 UTC 2016
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/kdeconnect.git;a=commitdiff;h=c50f1a2
The following commit has been merged in the master branch:
commit c50f1a22aeedd0c91ea72dc5976c856929d9a519
Author: Albert Vaca <albertvaka at gmail.com>
Date: Mon Feb 23 21:43:46 2015 -0800
Fixed rejectPairing being always called
---
core/device.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/device.cpp b/core/device.cpp
index 8dd8eb7..e8412b7 100644
--- a/core/device.cpp
+++ b/core/device.cpp
@@ -381,7 +381,7 @@ void Device::privateReceivedPackage(const NetworkPackage& np)
notification->setComponentName("kdeconnect");
notification->setText(i18n("Pairing request from %1", m_deviceName));
notification->setActions(QStringList() << i18n("Accept") << i18n("Reject"));
- connect(notification, &KNotification::closed, this, &Device::rejectPairing);
+ connect(notification, &KNotification::ignored, this, &Device::rejectPairing);
connect(notification, &KNotification::action1Activated, this, &Device::acceptPairing);
connect(notification, &KNotification::action2Activated, this, &Device::rejectPairing);
notification->sendEvent();
--
kdeconnect packaging
More information about the pkg-kde-commits
mailing list