[SCM] ktp-accounts-kcm packaging branch, master, updated. debian/15.12.1-1-1157-gc4589c5

Maximiliano Curia maxy at moszumanska.debian.org
Fri May 27 23:57:22 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-accounts-kcm.git;a=commitdiff;h=078d9a1

The following commit has been merged in the master branch:
commit 078d9a14838658b709182fe323d25e0b135fa5fc
Author: George Goldberg <grundleborg at googlemail.com>
Date:   Wed Jul 22 19:43:58 2009 +0000

    kDebug()++
    
    svn path=/trunk/playground/network/telepathy-accounts-kcm/; revision=1001277
---
 src/account-item.cpp        |  6 ++++++
 src/accounts-list-model.cpp | 10 ++++++++++
 2 files changed, 16 insertions(+)

diff --git a/src/account-item.cpp b/src/account-item.cpp
index 976413a..7a914da 100644
--- a/src/account-item.cpp
+++ b/src/account-item.cpp
@@ -33,6 +33,8 @@ AccountItem::AccountItem(const Tp::AccountPtr &account, AccountsListModel *paren
  : QObject(parent),
    m_account(account)
 {
+    kDebug();
+
     // We should look to see if the "account" instance we are passed is ready
     // yet. If not, we should get it ready now.
     // FIXME: What features should we check are ready?
@@ -48,6 +50,8 @@ AccountItem::AccountItem(const Tp::AccountPtr &account, AccountsListModel *paren
 
 AccountItem::~AccountItem()
 {
+    kDebug();
+
     // TODO: Implement me...
 }
 
@@ -58,6 +62,8 @@ Tp::AccountPtr AccountItem::account() const
 
 void AccountItem::onAccountReady(Tp::PendingOperation *op)
 {
+    kDebug();
+
     if (op->isError()) {
         kDebug() << "An error occurred in making and Account ready."
                  << op->errorName()
diff --git a/src/accounts-list-model.cpp b/src/accounts-list-model.cpp
index 7e1b43c..7b7d8db 100644
--- a/src/accounts-list-model.cpp
+++ b/src/accounts-list-model.cpp
@@ -30,12 +30,16 @@
 AccountsListModel::AccountsListModel(QObject *parent)
  : QAbstractListModel(parent)
 {
+    kDebug();
+
     m_unreadyAccounts.clear();
     m_readyAccounts.clear();
 }
 
 AccountsListModel::~AccountsListModel()
 {
+    kDebug();
+
     // TODO: Implement me!
 }
 
@@ -130,6 +134,8 @@ void AccountsListModel::addAccount(const Tp::AccountPtr &account)
 
 void AccountsListModel::onAccountItemReady()
 {
+    kDebug();
+
     AccountItem *item = qobject_cast<AccountItem*>(sender());
 
     Q_ASSERT(item);
@@ -158,6 +164,8 @@ void AccountsListModel::onAccountItemReady()
 
 void AccountsListModel::onAccountItemRemoved()
 {
+    kDebug();
+
     AccountItem *item = qobject_cast<AccountItem*>(sender());
 
     Q_ASSERT(item);
@@ -185,6 +193,8 @@ void AccountsListModel::onAccountItemRemoved()
 
 void AccountsListModel::onAccountItemUpdated()
 {
+    kDebug();
+
     // TODO: Implement me!
 }
 

-- 
ktp-accounts-kcm packaging



More information about the pkg-kde-commits mailing list