diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2015-05-23 17:30:42 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2015-08-02 10:39:47 +0200 |
commit | ca88d6333fecc5a06f433c9e9135c70fe29abe95 (patch) | |
tree | b544a2e69f413f12968cdcde04ff622c1df1dac9 | |
parent | c0e05dbd43bf6b6752ff69b1c27071f88a123923 (diff) |
api,voice: minor coding style fixes
-rw-r--r-- | include/ModemManager-enums.h | 2 | ||||
-rw-r--r-- | introspection/org.freedesktop.ModemManager1.Call.xml | 17 | ||||
-rw-r--r-- | introspection/org.freedesktop.ModemManager1.Modem.Voice.xml | 5 |
3 files changed, 16 insertions, 8 deletions
diff --git a/include/ModemManager-enums.h b/include/ModemManager-enums.h index d19b2a75..48c96817 100644 --- a/include/ModemManager-enums.h +++ b/include/ModemManager-enums.h @@ -1178,7 +1178,7 @@ typedef enum { /*< underscore_name=mm_oma_session_state_failed_reason >*/ * @MM_CALL_STATE_HELD: held call (by +CHLD AT command). * @MM_CALL_STATE_WAITING: waiting call (by +CCWA AT command). * @MM_CALL_STATE_TERMINATED: call is terminated. - * + * * State of Call */ typedef enum { /*< underscore_name=mm_call_state >*/ diff --git a/introspection/org.freedesktop.ModemManager1.Call.xml b/introspection/org.freedesktop.ModemManager1.Call.xml index 727b703c..3fcff72e 100644 --- a/introspection/org.freedesktop.ModemManager1.Call.xml +++ b/introspection/org.freedesktop.ModemManager1.Call.xml @@ -21,7 +21,9 @@ Start: If the outgoing call has not yet been started, start it. - Applicable only if state is MM_CALL_STATE_UNKNOWN and direction is MM_CALL_DIRECTION_OUTGOING. + + Applicable only if state is <link linkend="MM-CALL-STATE-UNKNOWN:CAPS"><constant>MM_CALL_STATE_UNKNOWN</constant></link> and direction is + <link linkend="MM-CALL-DIRECTION-OUTGOING:CAPS"><constant>MM_CALL_DIRECTION_OUTGOING</constant></link>. --> <method name="Start" /> @@ -29,7 +31,9 @@ Accept: Accept incoming call (answer). - Applicable only if state is MM_CALL_STATE_RINGING_IN and direction is MM_CALL_DIRECTION_INCOMING + + Applicable only if state is <link linkend="MM-CALL-STATE-RINGING-IN:CAPS"><constant>MM_CALL_STATE_RINGING_IN</constant></link> and direction is + <link linkend="MM-CALL-DIRECTION-INCOMING:CAPS"><constant>MM_CALL_DIRECTION_INCOMING</constant></link>. --> <method name="Accept" /> @@ -37,7 +41,9 @@ Hangup: Hangup the active call. - Applicable only if state is not MM_CALL_STATE_UNKNOWN or MM_CALL_STATE_TERMINATED + + Applicable only if state is <link linkend="MM-CALL-STATE-UNKNOWN:CAPS"><constant>MM_CALL_STATE_UNKNOWN</constant></link> and direction is + <link linkend="MM-CALL-DIRECTION-TERMINATED:CAPS"><constant>MM_CALL_DIRECTION_TERMINATED</constant></link>. --> <method name="Hangup"/> @@ -45,8 +51,9 @@ SendTone: @tone: Tone identifier. (Admitter chars are [0-9A-D*#]) - Send a DTMF tone (Dual Tone Multi-Frequency) (only on supported modem) - Applicable only if state is MM_CALL_STATE_ACTIVE + Send a DTMF tone (Dual Tone Multi-Frequency) (only on supported modem). + + Applicable only if state is <link linkend="MM-CALL-STATE-ACTIVE:CAPS"><constant>MM_CALL_STATE_ACTIVE</constant></link>. --> <method name="SendTone"> <arg name="tone" type="s" direction="in"/> diff --git a/introspection/org.freedesktop.ModemManager1.Modem.Voice.xml b/introspection/org.freedesktop.ModemManager1.Modem.Voice.xml index 82b3b09e..188b2bb4 100644 --- a/introspection/org.freedesktop.ModemManager1.Modem.Voice.xml +++ b/introspection/org.freedesktop.ModemManager1.Modem.Voice.xml @@ -36,8 +36,9 @@ DeleteCall: @path: The object path of the Call to delete. - Delete a Call from lists of calls. - If it is still active, Call.Hangup method is performed + Delete a Call from the list of calls. + + The call will be hangup if it is still active. --> <method name="DeleteCall"> <arg name="path" type="o" direction="in" /> |