st-container: Remove st_container_destroy_children
It was a simple wrapper around clutter_actor_destroy_all_children. https://bugzilla.gnome.org/show_bug.cgi?id=670034
This commit is contained in:
@ -30,18 +30,6 @@
|
||||
|
||||
G_DEFINE_ABSTRACT_TYPE (StContainer, st_container, ST_TYPE_WIDGET);
|
||||
|
||||
/**
|
||||
* st_container_destroy_children:
|
||||
* @container: An #StContainer
|
||||
*
|
||||
* Destroys all child actors from @container.
|
||||
*/
|
||||
void
|
||||
st_container_destroy_children (StContainer *container)
|
||||
{
|
||||
clutter_actor_destroy_all_children (CLUTTER_ACTOR (cotnainer));
|
||||
}
|
||||
|
||||
void
|
||||
st_container_move_child (StContainer *container,
|
||||
ClutterActor *actor,
|
||||
|
@ -50,8 +50,6 @@ struct _StContainerClass {
|
||||
|
||||
GType st_container_get_type (void) G_GNUC_CONST;
|
||||
|
||||
void st_container_destroy_children (StContainer *container);
|
||||
|
||||
/* Only to be used by subclasses of StContainer */
|
||||
void st_container_move_child (StContainer *container,
|
||||
ClutterActor *actor,
|
||||
|
Reference in New Issue
Block a user