[SCM] ktp-common-internals packaging branch, master, updated. debian/15.12.1-2-1839-gf0635e9

Maximiliano Curia maxy at moszumanska.debian.org
Mon May 9 09:08:53 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-common-internals.git;a=commitdiff;h=bba333f

The following commit has been merged in the master branch:
commit bba333fc3338687378e58ac3210398ed2619c9a4
Author: Martin Klapetek <mklapetek at kde.org>
Date:   Mon Jun 8 13:04:48 2015 +0200

    [kaccounts] Make unused stuff Q_UNUSED
---
 kaccounts/kaccounts-ktp-plugin.cpp | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/kaccounts/kaccounts-ktp-plugin.cpp b/kaccounts/kaccounts-ktp-plugin.cpp
index bbdd8c4..002fcbb 100644
--- a/kaccounts/kaccounts-ktp-plugin.cpp
+++ b/kaccounts/kaccounts-ktp-plugin.cpp
@@ -347,20 +347,24 @@ void KAccountsKTpPlugin::onAccountManagerReady(Tp::PendingOperation *op)
 
 void KAccountsKTpPlugin::onAccountCreated(const Accounts::AccountId accountId, const Accounts::ServiceList &serviceList)
 {
+    Q_UNUSED(accountId);
+    Q_UNUSED(serviceList);
     //TODO: should we connect the new account here?
 }
 
 void KAccountsKTpPlugin::onAccountRemoved(const Accounts::AccountId accountId)
 {
-
+    Q_UNUSED(accountId);
 }
 
 void KAccountsKTpPlugin::onServiceEnabled(const Accounts::AccountId accountId, const Accounts::Service &service)
 {
-
+    Q_UNUSED(accountId);
+    Q_UNUSED(service);
 }
 
 void KAccountsKTpPlugin::onServiceDisabled(const Accounts::AccountId accountId, const Accounts::Service &service)
 {
-
+    Q_UNUSED(accountId);
+    Q_UNUSED(service);
 }

-- 
ktp-common-internals packaging



More information about the pkg-kde-commits mailing list