[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:08:09 UTC 2016


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

The following commit has been merged in the master branch:
commit 5eab82ee1caf40c5b5364abaa2846bba4d5b70e3
Author: Martin Klapetek <martin.klapetek at gmail.com>
Date:   Tue Nov 29 20:05:03 2011 +0100

    Normalize signal/slot usage
---
 filter-bar.cpp              | 4 ++--
 global-presence-chooser.cpp | 4 ++--
 main-widget.cpp             | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/filter-bar.cpp b/filter-bar.cpp
index 4f6cd05..9e4bca5 100644
--- a/filter-bar.cpp
+++ b/filter-bar.cpp
@@ -46,8 +46,8 @@ FilterBar::FilterBar(QWidget* parent) :
     m_filterInput = new KLineEdit(this);
     m_filterInput->setLayoutDirection(Qt::LeftToRight);
     m_filterInput->setClearButtonShown(true);
-    connect(m_filterInput, SIGNAL(textEdited(const QString&)),
-            this, SIGNAL(filterChanged(const QString&)));
+    connect(m_filterInput, SIGNAL(textEdited(QString)),
+            this, SIGNAL(filterChanged(QString)));
     setFocusProxy(m_filterInput);
 
     // Apply layout
diff --git a/global-presence-chooser.cpp b/global-presence-chooser.cpp
index 5af115d..d9d0c1d 100644
--- a/global-presence-chooser.cpp
+++ b/global-presence-chooser.cpp
@@ -67,8 +67,8 @@ PresenceModelExtended::PresenceModelExtended(PresenceModel *presenceModel, QObje
     QAbstractListModel(parent),
     m_model(presenceModel)
 {
-    connect(m_model, SIGNAL(rowsInserted(QModelIndex, int, int)), SLOT(sourceRowsInserted(QModelIndex,int,int)));
-    connect(m_model, SIGNAL(rowsRemoved(QModelIndex, int, int)), SLOT(sourceRowsRemoved(QModelIndex,int,int)));
+    connect(m_model, SIGNAL(rowsInserted(QModelIndex,int,int)), SLOT(sourceRowsInserted(QModelIndex,int,int)));
+    connect(m_model, SIGNAL(rowsRemoved(QModelIndex,int,int)), SLOT(sourceRowsRemoved(QModelIndex,int,int)));
 }
 
 //return number of rows + an extra item for the "configure presences" button
diff --git a/main-widget.cpp b/main-widget.cpp
index 7fd60e1..12dc598 100644
--- a/main-widget.cpp
+++ b/main-widget.cpp
@@ -346,7 +346,7 @@ void MainWidget::onAccountManagerReady(Tp::PendingOperation* op)
     m_contactsListView->setSortingEnabled(true);
     m_contactsListView->sortByColumn(0, Qt::AscendingOrder);
 
-    connect(m_modelFilter, SIGNAL(rowsInserted(QModelIndex, int, int)),
+    connect(m_modelFilter, SIGNAL(rowsInserted(QModelIndex,int,int)),
             this, SLOT(onNewGroupModelItemsInserted(QModelIndex,int,int)));
 
     connect(m_showOfflineAction, SIGNAL(toggled(bool)),

-- 
ktp-contact-list packaging



More information about the pkg-kde-commits mailing list