[SCM] ktp-accounts-kcm packaging branch, master, updated. debian/15.12.1-1-1157-gc4589c5
Maximiliano Curia
maxy at moszumanska.debian.org
Sat May 28 00:00:45 UTC 2016
Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-accounts-kcm.git;a=commitdiff;h=c631d9a
The following commit has been merged in the master branch:
commit c631d9a5034a233373b37d799d2398999ba61434
Author: Dario Freddi <dario.freddi at collabora.com>
Date: Thu Dec 15 16:51:04 2011 +0100
fix-krazy: Normalize signatures
---
src/KCMTelepathyAccounts/parameter-edit-widget.cpp | 4 ++--
src/KCMTelepathyAccounts/profile-select-widget.cpp | 4 ++--
src/account-item.cpp | 2 +-
src/kcm-telepathy-accounts.cpp | 22 +++++++++++-----------
src/salut-enabler.cpp | 4 ++--
5 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/src/KCMTelepathyAccounts/parameter-edit-widget.cpp b/src/KCMTelepathyAccounts/parameter-edit-widget.cpp
index 6e266f2..77acfe1 100644
--- a/src/KCMTelepathyAccounts/parameter-edit-widget.cpp
+++ b/src/KCMTelepathyAccounts/parameter-edit-widget.cpp
@@ -57,8 +57,8 @@ ParameterEditWidget::ParameterEditWidget(ParameterEditModel *parameterModel,
d->ui->parameterListView->setItemDelegate(d->delegate);
connect(d->delegate,
- SIGNAL(dataChanged(QModelIndex, QVariant, int)),
- SLOT(onDelegateDataChanged(QModelIndex, QVariant, int)));
+ SIGNAL(dataChanged(QModelIndex,QVariant,int)),
+ SLOT(onDelegateDataChanged(QModelIndex,QVariant,int)));
}
ParameterEditWidget::~ParameterEditWidget()
diff --git a/src/KCMTelepathyAccounts/profile-select-widget.cpp b/src/KCMTelepathyAccounts/profile-select-widget.cpp
index 84250c4..dc8b9cc 100644
--- a/src/KCMTelepathyAccounts/profile-select-widget.cpp
+++ b/src/KCMTelepathyAccounts/profile-select-widget.cpp
@@ -81,8 +81,8 @@ ProfileSelectWidget::ProfileSelectWidget(QWidget *parent, bool enableSalut)
connect(d->ui->profileListView->selectionModel(),
- SIGNAL(selectionChanged(const QItemSelection &, const QItemSelection &)),
- SLOT(onSelectionChanged(const QItemSelection &)));
+ SIGNAL(selectionChanged(QItemSelection,QItemSelection)),
+ SLOT(onSelectionChanged(QItemSelection)));
connect(d->ui->profileListView,
SIGNAL(doubleClicked(QModelIndex)),
SIGNAL(profileDoubleClicked()));
diff --git a/src/account-item.cpp b/src/account-item.cpp
index 479276f..fc68bac 100644
--- a/src/account-item.cpp
+++ b/src/account-item.cpp
@@ -49,7 +49,7 @@ AccountItem::AccountItem(const Tp::AccountPtr &account, AccountsListModel *paren
SIGNAL(stateChanged(bool)),
SIGNAL(updated()));
connect(m_account.data(),
- SIGNAL(displayNameChanged(const QString&)),
+ SIGNAL(displayNameChanged(QString)),
SIGNAL(updated()));
connect(m_account.data(),
SIGNAL(connectionStatusChanged(Tp::ConnectionStatus)),
diff --git a/src/kcm-telepathy-accounts.cpp b/src/kcm-telepathy-accounts.cpp
index 8ad7dac..55d2853 100644
--- a/src/kcm-telepathy-accounts.cpp
+++ b/src/kcm-telepathy-accounts.cpp
@@ -138,11 +138,11 @@ KCMTelepathyAccounts::KCMTelepathyAccounts(QWidget *parent, const QVariantList&
m_ui->salutEnableFrame->setMinimumHeight(height);
connect(accountsDelegate,
- SIGNAL(itemChecked(QModelIndex, bool)),
- SLOT(onAccountEnabledChanged(QModelIndex, bool)));
+ SIGNAL(itemChecked(QModelIndex,bool)),
+ SLOT(onAccountEnabledChanged(QModelIndex,bool)));
connect(salutDelegate,
- SIGNAL(itemChecked(QModelIndex, bool)),
- SLOT(onAccountEnabledChanged(QModelIndex, bool)));
+ SIGNAL(itemChecked(QModelIndex,bool)),
+ SLOT(onAccountEnabledChanged(QModelIndex,bool)));
connect(m_ui->addAccountButton,
SIGNAL(clicked()),
SLOT(onAddAccountClicked()));
@@ -159,16 +159,16 @@ KCMTelepathyAccounts::KCMTelepathyAccounts(QWidget *parent, const QVariantList&
SIGNAL(clicked()),
SLOT(onRemoveAccountClicked()));
connect(m_ui->accountsListView->selectionModel(),
- SIGNAL(currentChanged(QModelIndex, QModelIndex)),
- SLOT(onSelectedItemChanged(QModelIndex, QModelIndex)));
+ SIGNAL(currentChanged(QModelIndex,QModelIndex)),
+ SLOT(onSelectedItemChanged(QModelIndex,QModelIndex)));
connect(m_ui->salutListView->selectionModel(),
- SIGNAL(currentChanged(QModelIndex, QModelIndex)),
- SLOT(onSelectedItemChanged(QModelIndex, QModelIndex)));
+ SIGNAL(currentChanged(QModelIndex,QModelIndex)),
+ SLOT(onSelectedItemChanged(QModelIndex,QModelIndex)));
connect(m_accountsListModel,
- SIGNAL(rowsInserted(QModelIndex, int, int)),
+ SIGNAL(rowsInserted(QModelIndex,int,int)),
SLOT(onModelDataChanged()));
connect(m_accountsListModel,
- SIGNAL(rowsRemoved(QModelIndex, int, int)),
+ SIGNAL(rowsRemoved(QModelIndex,int,int)),
SLOT(onModelDataChanged()));
connect(m_ui->salutEnableCheckbox,
SIGNAL(toggled(bool)),
@@ -240,7 +240,7 @@ void KCMTelepathyAccounts::onAccountManagerReady(Tp::PendingOperation *op)
onModelDataChanged();
connect(m_accountManager.data(),
- SIGNAL(newAccount (Tp::AccountPtr)),
+ SIGNAL(newAccount(Tp::AccountPtr)),
SLOT(onAccountCreated(Tp::AccountPtr)));
}
diff --git a/src/salut-enabler.cpp b/src/salut-enabler.cpp
index 9bc3ba2..a076099 100644
--- a/src/salut-enabler.cpp
+++ b/src/salut-enabler.cpp
@@ -267,8 +267,8 @@ void SalutEnabler::onUserWantingChanges()
{
d->detailsDialog = new SalutDetailsDialog(d->profileManager, d->connectionManager, 0);
- connect(d->detailsDialog, SIGNAL(dialogAccepted(const QVariantMap&)),
- this, SLOT(onDialogAccepted(const QVariantMap&)));
+ connect(d->detailsDialog, SIGNAL(dialogAccepted(QVariantMap)),
+ this, SLOT(onDialogAccepted(QVariantMap)));
connect(d->detailsDialog, SIGNAL(rejected()),
this, SLOT(onUserCancelled()));
--
ktp-accounts-kcm packaging
More information about the pkg-kde-commits
mailing list