summaryrefslogtreecommitdiff
path: root/qt4/TelepathyQt4/account-set.cpp
diff options
context:
space:
mode:
authorAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2010-06-23 16:13:54 -0300
committerAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2010-06-28 15:20:01 -0300
commit508f1c71aa92eeb3c076382d3105fe9fecbd61b9 (patch)
treece2ffe2adbe95759b65b9bc907ac9e4ed8ce6972 /qt4/TelepathyQt4/account-set.cpp
parentcc91efebd625d134f10fb85ea7b2479748949a54 (diff)
AccountSet: Properly connect to signals using namespace Tp:: where appropriate.
Diffstat (limited to 'qt4/TelepathyQt4/account-set.cpp')
-rw-r--r--qt4/TelepathyQt4/account-set.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt4/TelepathyQt4/account-set.cpp b/qt4/TelepathyQt4/account-set.cpp
index 3290c5ad8..d21b24dd7 100644
--- a/qt4/TelepathyQt4/account-set.cpp
+++ b/qt4/TelepathyQt4/account-set.cpp
@@ -77,8 +77,8 @@ void AccountSet::Private::wrapAccount(const AccountPtr &account)
{
AccountWrapper *wrapper = new AccountWrapper(account, parent);
parent->connect(wrapper,
- SIGNAL(accountPropertyChanged(const AccountPtr &, const QString &)),
- SLOT(onAccountPropertyChanged(const AccountPtr &, const QString &)));
+ SIGNAL(accountPropertyChanged(const Tp::AccountPtr &, const QString &)),
+ SLOT(onAccountPropertyChanged(const Tp::AccountPtr &, const QString &)));
wrappers.insert(account->objectPath(), wrapper);
}