libmm-glib: make C++ happy by not using 'class'
This commit is contained in:
@@ -322,18 +322,18 @@ mm_sms_properties_get_validity_relative (MMSmsProperties *self)
|
|||||||
/**
|
/**
|
||||||
* mm_sms_properties_set_class:
|
* mm_sms_properties_set_class:
|
||||||
* @self: A #MMSmsProperties.
|
* @self: A #MMSmsProperties.
|
||||||
* @class: The message class (0..3), or -1 for invalid/unset class.
|
* @message_class: The message class (0..3), or -1 for invalid/unset class.
|
||||||
*
|
*
|
||||||
* Sets the 3GPP message class of the SMS.
|
* Sets the 3GPP message class of the SMS.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
mm_sms_properties_set_class (MMSmsProperties *self,
|
mm_sms_properties_set_class (MMSmsProperties *self,
|
||||||
gint class)
|
gint message_class)
|
||||||
{
|
{
|
||||||
g_return_if_fail (MM_IS_SMS_PROPERTIES (self));
|
g_return_if_fail (MM_IS_SMS_PROPERTIES (self));
|
||||||
g_return_if_fail (class >= -1 && class <= 3);
|
g_return_if_fail (message_class >= -1 && message_class <= 3);
|
||||||
|
|
||||||
self->priv->class = class;
|
self->priv->class = message_class;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -71,7 +71,7 @@ void mm_sms_properties_set_smsc (MMSmsProperties *self,
|
|||||||
void mm_sms_properties_set_validity_relative (MMSmsProperties *self,
|
void mm_sms_properties_set_validity_relative (MMSmsProperties *self,
|
||||||
guint validity);
|
guint validity);
|
||||||
void mm_sms_properties_set_class (MMSmsProperties *self,
|
void mm_sms_properties_set_class (MMSmsProperties *self,
|
||||||
gint class);
|
gint message_class);
|
||||||
void mm_sms_properties_set_delivery_report_request (MMSmsProperties *self,
|
void mm_sms_properties_set_delivery_report_request (MMSmsProperties *self,
|
||||||
gboolean request);
|
gboolean request);
|
||||||
void mm_sms_properties_set_teleservice_id (MMSmsProperties *self,
|
void mm_sms_properties_set_teleservice_id (MMSmsProperties *self,
|
||||||
|
Reference in New Issue
Block a user