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

Maximiliano Curia maxy at moszumanska.debian.org
Fri Oct 14 14:29:06 UTC 2016


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

The following commit has been merged in the master branch:
commit d8310cb38a41002f48cf3c5655d83cb6f7445a51
Author: Aleix Pol <aleixpol at kde.org>
Date:   Sat Sep 12 09:48:18 2015 +0200

    Remove unused arguments
---
 interfaces/devicessortproxymodel.cpp | 4 ++--
 interfaces/devicessortproxymodel.h   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/interfaces/devicessortproxymodel.cpp b/interfaces/devicessortproxymodel.cpp
index 4588dd6..cff163c 100644
--- a/interfaces/devicessortproxymodel.cpp
+++ b/interfaces/devicessortproxymodel.cpp
@@ -34,12 +34,12 @@ void DevicesSortProxyModel::setSourceModel(QAbstractItemModel *devicesModel)
     QSortFilterProxyModel::setSourceModel(devicesModel);
     if (devicesModel) {
         setSortRole(DevicesModel::StatusModelRole);
-        connect(devicesModel, SIGNAL(dataChanged(QModelIndex,QModelIndex)), this, SLOT(sourceDataChanged(QModelIndex,QModelIndex)));
+        connect(devicesModel, SIGNAL(dataChanged(QModelIndex,QModelIndex)), this, SLOT(sourceDataChanged()));
     }
     sort(0);
 }
 
-void DevicesSortProxyModel::sourceDataChanged(QModelIndex , QModelIndex )
+void DevicesSortProxyModel::sourceDataChanged()
 {
     sort(0);
 }
diff --git a/interfaces/devicessortproxymodel.h b/interfaces/devicessortproxymodel.h
index f248f36..5682820 100644
--- a/interfaces/devicessortproxymodel.h
+++ b/interfaces/devicessortproxymodel.h
@@ -36,7 +36,7 @@ public:
     virtual void setSourceModel(QAbstractItemModel *sourceModel) override;
 
 public Q_SLOTS:
-    void sourceDataChanged(QModelIndex,QModelIndex);
+    void sourceDataChanged();
 };
 
 #endif // DEVICESSORTPROXYMODEL_H

-- 
kdeconnect packaging



More information about the pkg-kde-commits mailing list