aboutsummaryrefslogtreecommitdiff
path: root/libmm-glib/mm-call.h
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2015-05-23 17:30:57 +0200
committerAleksander Morgado <aleksander@aleksander.es>2015-08-02 10:39:47 +0200
commitd00fe0d628eb53047963330da1b7c148a4c8209f (patch)
tree79d3cb7c99294bc756bffe39666b8e775c61f6d1 /libmm-glib/mm-call.h
parentca88d6333fecc5a06f433c9e9135c70fe29abe95 (diff)
libmm-glib,voice: minor coding style fixes
Diffstat (limited to 'libmm-glib/mm-call.h')
-rw-r--r--libmm-glib/mm-call.h98
1 files changed, 49 insertions, 49 deletions
diff --git a/libmm-glib/mm-call.h b/libmm-glib/mm-call.h
index 53c6bf1a..d86171fe 100644
--- a/libmm-glib/mm-call.h
+++ b/libmm-glib/mm-call.h
@@ -59,76 +59,76 @@ struct _MMCallClass {
GType mm_call_get_type (void);
-const gchar *mm_call_get_path (MMCall *self);
-gchar *mm_call_dup_path (MMCall *self);
+const gchar *mm_call_get_path (MMCall *self);
+gchar *mm_call_dup_path (MMCall *self);
-const gchar *mm_call_get_number (MMCall *self);
-gchar *mm_call_dup_number (MMCall *self);
+const gchar *mm_call_get_number (MMCall *self);
+gchar *mm_call_dup_number (MMCall *self);
-MMCallState mm_call_get_state (MMCall *self);
+MMCallState mm_call_get_state (MMCall *self);
-MMCallStateReason mm_call_get_state_reason (MMCall *self);
+MMCallStateReason mm_call_get_state_reason (MMCall *self);
-MMCallDirection mm_call_get_direction (MMCall *self);
+MMCallDirection mm_call_get_direction (MMCall *self);
-void mm_call_start (MMCall *self,
- GCancellable *cancellable,
- GAsyncReadyCallback callback,
- gpointer user_data);
+void mm_call_start (MMCall *self,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
-gboolean mm_call_start_finish (MMCall *self,
- GAsyncResult *res,
- GError **error);
+gboolean mm_call_start_finish (MMCall *self,
+ GAsyncResult *res,
+ GError **error);
-gboolean mm_call_start_sync (MMCall *self,
- GCancellable *cancellable,
- GError **error);
+gboolean mm_call_start_sync (MMCall *self,
+ GCancellable *cancellable,
+ GError **error);
-void mm_call_accept (MMCall *self,
- GCancellable *cancellable,
- GAsyncReadyCallback callback,
- gpointer user_data);
+void mm_call_accept (MMCall *self,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
-gboolean mm_call_accept_finish (MMCall *self,
- GAsyncResult *res,
- GError **error);
+gboolean mm_call_accept_finish (MMCall *self,
+ GAsyncResult *res,
+ GError **error);
-gboolean mm_call_accept_sync (MMCall *self,
- GCancellable *cancellable,
- GError **error);
+gboolean mm_call_accept_sync (MMCall *self,
+ GCancellable *cancellable,
+ GError **error);
-void mm_call_hangup (MMCall *self,
- GCancellable *cancellable,
- GAsyncReadyCallback callback,
- gpointer user_data);
+void mm_call_hangup (MMCall *self,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
-gboolean mm_call_hangup_finish (MMCall *self,
- GAsyncResult *res,
- GError **error);
+gboolean mm_call_hangup_finish (MMCall *self,
+ GAsyncResult *res,
+ GError **error);
-gboolean mm_call_hangup_sync (MMCall *self,
- GCancellable *cancellable,
- GError **error);
+gboolean mm_call_hangup_sync (MMCall *self,
+ GCancellable *cancellable,
+ GError **error);
-void mm_call_send_tone (MMCall *self,
- const gchar *tone,
- GCancellable *cancellable,
- GAsyncReadyCallback callback,
- gpointer user_data);
+void mm_call_send_tone (MMCall *self,
+ const gchar *tone,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
-gboolean mm_call_send_tone_finish (MMCall *self,
- GAsyncResult *res,
- GError **error);
+gboolean mm_call_send_tone_finish (MMCall *self,
+ GAsyncResult *res,
+ GError **error);
-gboolean mm_call_send_tone_sync (MMCall *self,
- const gchar *tone,
- GCancellable *cancellable,
- GError **error);
+gboolean mm_call_send_tone_sync (MMCall *self,
+ const gchar *tone,
+ GCancellable *cancellable,
+ GError **error);
G_END_DECLS