[gnome-shell] telepathy-client: Adjust to gjs array changes
- From: Florian MÃllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] telepathy-client: Adjust to gjs array changes
- Date: Thu, 23 Jun 2011 22:58:12 +0000 (UTC)
commit e5fadb3b42f031194a773259fb84203daaf001c9
Author: Florian MÃllner <fmuellner gnome org>
Date: Fri Jun 24 00:20:43 2011 +0200
telepathy-client: Adjust to gjs array changes
Since bug 646632 was fixed, array lengths are no longer passed as
separate parameters. Adjust to that change.
js/ui/telepathyClient.js | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/js/ui/telepathyClient.js b/js/ui/telepathyClient.js
index ba6113d..5893c58 100644
--- a/js/ui/telepathyClient.js
+++ b/js/ui/telepathyClient.js
@@ -103,7 +103,7 @@ Client.prototype = {
this._finishObserveChannels(account, conn, channels, context);
} else {
Shell.get_self_contact_features(conn,
- contactFeatures.length, contactFeatures,
+ contactFeatures,
Lang.bind(this, function() {
this._finishObserveChannels(account, conn, channels, context);
}));
@@ -123,8 +123,8 @@ Client.prototype = {
continue;
/* Request a TpContact */
- Shell.get_tp_contacts(conn, 1, [targetHandle],
- contactFeatures.length, contactFeatures,
+ Shell.get_tp_contacts(conn, [targetHandle],
+ contactFeatures,
Lang.bind(this, function (connection, contacts, failed) {
if (contacts.length < 1)
return;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]