summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandr Akulich <akulichalexander@gmail.com>2015-08-14 11:47:47 +0600
committerAlexandr Akulich <akulichalexander@gmail.com>2015-08-29 17:10:35 +0500
commit83beb52cf6ce0f77ce03e40f0363207d97ee5b30 (patch)
treebc7b89225da4af03d4dcb24cf862ecc49acbffce
parentb7eff138938b030fa85b60561e72edd53af4d034 (diff)
BaseConn.I.Requests: Fixed createChannel() suppressHandler argument.
Second arg is not "yours", but "suppressHandler". That means, that the value should be opposite.
-rw-r--r--TelepathyQt/base-connection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TelepathyQt/base-connection.cpp b/TelepathyQt/base-connection.cpp
index 570092dd..0c2cc5cd 100644
--- a/TelepathyQt/base-connection.cpp
+++ b/TelepathyQt/base-connection.cpp
@@ -915,7 +915,7 @@ void BaseConnectionRequestsInterface::createChannel(const QVariantMap &request,
return;
}
- BaseChannelPtr channel = mPriv->connection->createChannel(request, /* yours */ false, error);
+ BaseChannelPtr channel = mPriv->connection->createChannel(request, /* suppressHandler */ true, error);
if (error->isValid())
return;