1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-08 04:45:31 +00:00

mm-call: Codestyle

Prefer char over gchar and some whitespace cleanups.
This commit is contained in:
Evangelos Ribeiro Tzaras 2023-01-18 21:24:29 +01:00
parent 4733d0e033
commit 9ee436135f
2 changed files with 14 additions and 16 deletions

View file

@ -36,7 +36,7 @@
struct _CallsMMCall { struct _CallsMMCall {
GObject parent_instance; GObject parent_instance;
MMCall *mm_call; MMCall *mm_call;
gchar *disconnect_reason; char *disconnect_reason;
}; };
static void calls_mm_call_message_source_interface_init (CallsMessageSourceInterface *iface); static void calls_mm_call_message_source_interface_init (CallsMessageSourceInterface *iface);
@ -54,7 +54,7 @@ static GParamSpec *props[PROP_LAST_PROP];
static void static void
notify_id_cb (CallsMMCall *self, notify_id_cb (CallsMMCall *self,
const gchar *id) const char *id)
{ {
calls_call_set_id (CALLS_CALL (self), id); calls_call_set_id (CALLS_CALL (self), id);
} }
@ -62,7 +62,7 @@ notify_id_cb (CallsMMCall *self,
struct CallsMMCallStateReasonMap { struct CallsMMCallStateReasonMap {
MMCallStateReason value; MMCallStateReason value;
const gchar *desc; const char *desc;
}; };
static const struct CallsMMCallStateReasonMap STATE_REASON_MAP[] = { static const struct CallsMMCallStateReasonMap STATE_REASON_MAP[] = {
@ -116,7 +116,7 @@ set_disconnect_reason (CallsMMCall *self,
struct CallsMMCallStateMap { struct CallsMMCallStateMap {
MMCallState mm; MMCallState mm;
CallsCallState calls; CallsCallState calls;
const gchar *desc; const char *desc;
}; };
static const struct CallsMMCallStateMap STATE_MAP[] = { static const struct CallsMMCallStateMap STATE_MAP[] = {
@ -163,10 +163,10 @@ state_changed_cb (CallsMMCall *self,
if (state_map_row->mm == -1 && if (state_map_row->mm == -1 &&
new_state == MM_CALL_STATE_WAITING) { new_state == MM_CALL_STATE_WAITING) {
MMCallDirection direction = mm_call_get_direction(self->mm_call); MMCallDirection direction = mm_call_get_direction (self->mm_call);
gboolean outgoing = direction == MM_CALL_DIRECTION_OUTGOING; gboolean outgoing = direction == MM_CALL_DIRECTION_OUTGOING;
call_state = outgoing ? CALLS_CALL_STATE_ALERTING : CALLS_CALL_STATE_INCOMING; call_state = outgoing ? CALLS_CALL_STATE_ALERTING : CALLS_CALL_STATE_INCOMING;
} }
g_assert_cmpint (call_state, !=, CALLS_CALL_STATE_UNKNOWN); g_assert_cmpint (call_state, !=, CALLS_CALL_STATE_UNKNOWN);
@ -194,7 +194,7 @@ calls_mm_call_get_protocol (CallsCall *self)
} }
struct CallsMMOperationData { struct CallsMMOperationData {
const gchar *desc; const char *desc;
CallsMMCall *self; CallsMMCall *self;
gboolean (*finish_func) (MMCall *, GAsyncResult *, GError **); gboolean (*finish_func) (MMCall *, GAsyncResult *, GError **);
}; };
@ -247,7 +247,7 @@ DEFINE_OPERATION (start, calls_mm_call_start_call, "starting outgoing call");
static void static void
calls_mm_call_send_dtmf_tone (CallsCall *call, gchar key) calls_mm_call_send_dtmf_tone (CallsCall *call, char key)
{ {
CallsMMCall *self = CALLS_MM_CALL (call); CallsMMCall *self = CALLS_MM_CALL (call);
struct CallsMMOperationData *data; struct CallsMMOperationData *data;
@ -410,14 +410,14 @@ calls_mm_call_new (MMCall *mm_call)
} }
const gchar * const char *
calls_mm_call_get_object_path (CallsMMCall *call) calls_mm_call_get_object_path (CallsMMCall *call)
{ {
return mm_call_get_path (call->mm_call); return mm_call_get_path (call->mm_call);
} }
const gchar * const char *
calls_mm_call_get_disconnect_reason (CallsMMCall *call) calls_mm_call_get_disconnect_reason (CallsMMCall *call)
{ {
return call->disconnect_reason; return call->disconnect_reason;

View file

@ -22,8 +22,7 @@
* *
*/ */
#ifndef CALLS_MM_CALL_H__ #pragma once
#define CALLS_MM_CALL_H__
#include <libmm-glib.h> #include <libmm-glib.h>
#include <glib-object.h> #include <glib-object.h>
@ -37,9 +36,8 @@ G_BEGIN_DECLS
G_DECLARE_FINAL_TYPE (CallsMMCall, calls_mm_call, CALLS, MM_CALL, CallsCall) G_DECLARE_FINAL_TYPE (CallsMMCall, calls_mm_call, CALLS, MM_CALL, CallsCall)
CallsMMCall *calls_mm_call_new (MMCall *mm_call); CallsMMCall *calls_mm_call_new (MMCall *mm_call);
const gchar *calls_mm_call_get_object_path (CallsMMCall *call); const char *calls_mm_call_get_object_path (CallsMMCall *call);
const gchar *calls_mm_call_get_disconnect_reason (CallsMMCall *call); const char *calls_mm_call_get_disconnect_reason (CallsMMCall *call);
G_END_DECLS G_END_DECLS
#endif /* CALLS_MM_CALL_H__ */