[SCM] ktp-contact-list packaging branch, master, updated. debian/15.12.1-2-1070-g6c56f91

Maximiliano Curia maxy at moszumanska.debian.org
Sat May 28 00:05:35 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-contact-list.git;a=commitdiff;h=8b2d560

The following commit has been merged in the master branch:
commit 8b2d560eec61011d2d7174d1808f559e09a5c53a
Author: David Edmundson <kde at davidedmundson.co.uk>
Date:   Sat Mar 12 03:27:41 2011 +0000

    Fix silly compile warning about extra brackets
---
 account-filter-model.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/account-filter-model.cpp b/account-filter-model.cpp
index 2816a7e..0347daa 100644
--- a/account-filter-model.cpp
+++ b/account-filter-model.cpp
@@ -56,10 +56,10 @@ bool AccountFilterModel::filterAcceptsRow(int source_row, const QModelIndex &sou
 
         //filter offline users out
         if (m_filterOfflineUsers &&
-                (source_parent.child(source_row, 0).data(AccountsModel::PresenceTypeRole).toUInt()
+                ((source_parent.child(source_row, 0).data(AccountsModel::PresenceTypeRole).toUInt()
                  == Tp::ConnectionPresenceTypeOffline) ||
                 (source_parent.child(source_row, 0).data(AccountsModel::PresenceTypeRole).toUInt()
-                 == Tp::ConnectionPresenceTypeUnknown)) {
+                 == Tp::ConnectionPresenceTypeUnknown))) {
 
             rowAccepted = false;
         }

-- 
ktp-contact-list packaging



More information about the pkg-kde-commits mailing list