telepathy-glib: future-account: function definition args should be one-per-line
Jonny Lamb
jonny at kemper.freedesktop.org
Thu May 10 07:41:20 PDT 2012
Module: telepathy-glib
Branch: master
Commit: 5e30f62e70787c5db6502f70c7b805b259eaaf39
URL: http://cgit.freedesktop.org/telepathy/telepathy-glib/commit/?id=5e30f62e70787c5db6502f70c7b805b259eaaf39
Author: Jonny Lamb <jonny.lamb at collabora.co.uk>
Date: Thu May 3 14:59:39 2012 +0100
future-account: function definition args should be one-per-line
http://telepathy.freedesktop.org/wiki/Style?action=diff&rev1=22&rev2=23
I didn't know this had changed over three years ago.
Signed-off-by: Jonny Lamb <jonny.lamb at collabora.co.uk>
---
telepathy-glib/future-account.h | 18 ++++++++++++------
1 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/telepathy-glib/future-account.h b/telepathy-glib/future-account.h
index 7465909..ecbf53d 100644
--- a/telepathy-glib/future-account.h
+++ b/telepathy-glib/future-account.h
@@ -62,8 +62,10 @@ GType tp_future_account_get_type (void);
TpFutureAccountClass))
_TP_AVAILABLE_IN_0_20
-TpFutureAccount * tp_future_account_new (TpAccountManager *account_manager,
- const gchar *manager, const gchar *protocol) G_GNUC_WARN_UNUSED_RESULT;
+TpFutureAccount * tp_future_account_new (
+ TpAccountManager *account_manager,
+ const gchar *manager,
+ const gchar *protocol) G_GNUC_WARN_UNUSED_RESULT;
_TP_AVAILABLE_IN_0_20
TpFutureAccount * tp_future_account_new_from_protocol (
@@ -111,7 +113,8 @@ void tp_future_account_set_avatar (TpFutureAccount *self,
/* parameters */
_TP_AVAILABLE_IN_0_20
void tp_future_account_set_parameter (TpFutureAccount *self,
- const gchar *key, GVariant *value);
+ const gchar *key,
+ GVariant *value);
_TP_AVAILABLE_IN_0_20
void tp_future_account_unset_parameter (TpFutureAccount *self,
@@ -119,16 +122,19 @@ void tp_future_account_unset_parameter (TpFutureAccount *self,
_TP_AVAILABLE_IN_0_20
void tp_future_account_set_parameter_string (TpFutureAccount *self,
- const gchar *key, const gchar *value);
+ const gchar *key,
+ const gchar *value);
/* create it */
_TP_AVAILABLE_IN_0_20
void tp_future_account_create_account_async (TpFutureAccount *self,
- GAsyncReadyCallback callback, gpointer user_data);
+ GAsyncReadyCallback callback,
+ gpointer user_data);
_TP_AVAILABLE_IN_0_20
TpAccount * tp_future_account_create_account_finish (TpFutureAccount *self,
- GAsyncResult *result, GError **error);
+ GAsyncResult *result,
+ GError **error);
G_END_DECLS
More information about the telepathy-commits
mailing list