call: Move id property into base class
This allows us to avoid some duplication in the derived classes.
This commit is contained in:
@@ -51,7 +51,6 @@ struct _CallsCallClass
|
||||
{
|
||||
GObjectClass parent_iface;
|
||||
|
||||
const char *(*get_id) (CallsCall *self);
|
||||
const char *(*get_name) (CallsCall *self);
|
||||
const char *(*get_protocol) (CallsCall *self);
|
||||
void (*answer) (CallsCall *self);
|
||||
@@ -61,6 +60,8 @@ struct _CallsCallClass
|
||||
};
|
||||
|
||||
const char *calls_call_get_id (CallsCall *self);
|
||||
void calls_call_set_id (CallsCall *self,
|
||||
const char *id);
|
||||
const char *calls_call_get_name (CallsCall *self);
|
||||
CallsCallState calls_call_get_state (CallsCall *self);
|
||||
void calls_call_set_state (CallsCall *self,
|
||||
|
Reference in New Issue
Block a user