libmm-glib,bearer-properties: move deprecated methods to compat source
This commit is contained in:
@@ -1213,8 +1213,6 @@ mm_bearer_properties_get_rm_protocol
|
||||
mm_bearer_properties_set_rm_protocol
|
||||
mm_bearer_properties_get_multiplex
|
||||
mm_bearer_properties_set_multiplex
|
||||
mm_bearer_properties_get_number
|
||||
mm_bearer_properties_set_number
|
||||
<SUBSECTION Private>
|
||||
mm_bearer_properties_new_from_dictionary
|
||||
mm_bearer_properties_new_from_string
|
||||
@@ -1825,6 +1823,9 @@ mm_serial_error_get_type
|
||||
<SECTION>
|
||||
<FILE>mm-compat</FILE>
|
||||
<TITLE>Deprecated Interface</TITLE>
|
||||
<SUBSECTION BearerProperties>
|
||||
mm_bearer_properties_get_number
|
||||
mm_bearer_properties_set_number
|
||||
<SUBSECTION CallProperties>
|
||||
mm_call_properties_get_direction
|
||||
mm_call_properties_set_direction
|
||||
|
@@ -367,54 +367,6 @@ mm_bearer_properties_get_allow_roaming (MMBearerProperties *self)
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
#ifndef MM_DISABLE_DEPRECATED
|
||||
|
||||
/**
|
||||
* mm_bearer_properties_set_number:
|
||||
* @self: a #MMBearerProperties.
|
||||
* @number: the number.
|
||||
*
|
||||
* Sets the number to use when performing the connection.
|
||||
*
|
||||
* Since: 1.0
|
||||
* Deprecated: 1.10.0. The number setting is not used anywhere, and therefore
|
||||
* it doesn't make sense to expose it in the ModemManager interface.
|
||||
*/
|
||||
void
|
||||
mm_bearer_properties_set_number (MMBearerProperties *self,
|
||||
const gchar *number)
|
||||
{
|
||||
g_return_if_fail (MM_IS_BEARER_PROPERTIES (self));
|
||||
|
||||
/* NO-OP */
|
||||
}
|
||||
|
||||
/**
|
||||
* mm_bearer_properties_get_number:
|
||||
* @self: a #MMBearerProperties.
|
||||
*
|
||||
* Gets the number to use when performing the connection.
|
||||
*
|
||||
* Returns: (transfer none): the number, or #NULL if not set. Do not free the
|
||||
* returned value, it is owned by @self.
|
||||
*
|
||||
* Since: 1.0
|
||||
* Deprecated: 1.10.0. The number setting is not used anywhere, and therefore
|
||||
* it doesn't make sense to expose it in the ModemManager interface.
|
||||
*/
|
||||
const gchar *
|
||||
mm_bearer_properties_get_number (MMBearerProperties *self)
|
||||
{
|
||||
g_return_val_if_fail (MM_IS_BEARER_PROPERTIES (self), NULL);
|
||||
|
||||
/* NO-OP */
|
||||
return NULL;
|
||||
}
|
||||
|
||||
#endif /* MM_DISABLE_DEPRECATED */
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
/**
|
||||
* mm_bearer_properties_set_rm_protocol:
|
||||
* @self: a #MMBearerProperties.
|
||||
|
@@ -91,14 +91,6 @@ gboolean mm_bearer_properties_get_allow_roaming (MMBearerProper
|
||||
MMModemCdmaRmProtocol mm_bearer_properties_get_rm_protocol (MMBearerProperties *self);
|
||||
MMBearerMultiplexSupport mm_bearer_properties_get_multiplex (MMBearerProperties *self);
|
||||
|
||||
#ifndef MM_DISABLE_DEPRECATED
|
||||
G_DEPRECATED
|
||||
void mm_bearer_properties_set_number (MMBearerProperties *self,
|
||||
const gchar *number);
|
||||
G_DEPRECATED
|
||||
const gchar *mm_bearer_properties_get_number (MMBearerProperties *self);
|
||||
#endif
|
||||
|
||||
/*****************************************************************************/
|
||||
/* ModemManager/libmm-glib/mmcli specific methods */
|
||||
|
||||
|
@@ -28,6 +28,22 @@
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
void
|
||||
mm_bearer_properties_set_number (MMBearerProperties *self,
|
||||
const gchar *number)
|
||||
{
|
||||
/* NO-OP */
|
||||
}
|
||||
|
||||
const gchar *
|
||||
mm_bearer_properties_get_number (MMBearerProperties *self)
|
||||
{
|
||||
/* NO-OP */
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
void
|
||||
mm_call_properties_set_direction (MMCallProperties *self,
|
||||
MMCallDirection direction)
|
||||
|
@@ -29,6 +29,7 @@
|
||||
#error "Only <libmm-glib.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#include "mm-bearer-properties.h"
|
||||
#include "mm-call-properties.h"
|
||||
#include "mm-modem-oma.h"
|
||||
|
||||
@@ -43,6 +44,39 @@
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
/**
|
||||
* mm_bearer_properties_set_number:
|
||||
* @self: a #MMBearerProperties.
|
||||
* @number: the number.
|
||||
*
|
||||
* Sets the number to use when performing the connection.
|
||||
*
|
||||
* Since: 1.0
|
||||
* Deprecated: 1.10.0. The number setting is not used anywhere, and therefore
|
||||
* it doesn't make sense to expose it in the ModemManager interface.
|
||||
*/
|
||||
G_DEPRECATED
|
||||
void mm_bearer_properties_set_number (MMBearerProperties *self,
|
||||
const gchar *number);
|
||||
|
||||
/**
|
||||
* mm_bearer_properties_get_number:
|
||||
* @self: a #MMBearerProperties.
|
||||
*
|
||||
* Gets the number to use when performing the connection.
|
||||
*
|
||||
* Returns: (transfer none): the number, or #NULL if not set. Do not free the
|
||||
* returned value, it is owned by @self.
|
||||
*
|
||||
* Since: 1.0
|
||||
* Deprecated: 1.10.0. The number setting is not used anywhere, and therefore
|
||||
* it doesn't make sense to expose it in the ModemManager interface.
|
||||
*/
|
||||
G_DEPRECATED
|
||||
const gchar *mm_bearer_properties_get_number (MMBearerProperties *self);
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
/**
|
||||
* mm_call_properties_set_direction:
|
||||
* @self: A #MMCallProperties.
|
||||
|
Reference in New Issue
Block a user