mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
cally: Fix redundant declarations
This commit is contained in:
parent
4da1c3efb8
commit
266ea8a3d9
@ -108,8 +108,6 @@ struct _CallyActorActionInfo
|
||||
GDestroyNotify notify;
|
||||
};
|
||||
|
||||
static void cally_actor_class_init (CallyActorClass *klass);
|
||||
static void cally_actor_init (CallyActor *cally_actor);
|
||||
static void cally_actor_initialize (AtkObject *obj,
|
||||
gpointer data);
|
||||
static void cally_actor_finalize (GObject *obj);
|
||||
|
@ -73,9 +73,6 @@
|
||||
#include "cally-clone.h"
|
||||
#include "cally-actor-private.h"
|
||||
|
||||
static void cally_clone_class_init (CallyCloneClass *klass);
|
||||
static void cally_clone_init (CallyClone *clone);
|
||||
|
||||
/* AtkObject */
|
||||
static void cally_clone_real_initialize (AtkObject *obj,
|
||||
gpointer data);
|
||||
|
@ -41,8 +41,6 @@
|
||||
#include "cally-group.h"
|
||||
#include "cally-actor-private.h"
|
||||
|
||||
static void cally_group_class_init (CallyGroupClass *klass);
|
||||
static void cally_group_init (CallyGroup *group);
|
||||
static gint cally_group_get_n_children (AtkObject *obj);
|
||||
static AtkObject* cally_group_ref_child (AtkObject *obj,
|
||||
gint i);
|
||||
|
@ -33,9 +33,6 @@
|
||||
#include "cally-rectangle.h"
|
||||
#include "cally-actor-private.h"
|
||||
|
||||
static void cally_rectangle_class_init (CallyRectangleClass *klass);
|
||||
static void cally_rectangle_init (CallyRectangle *rectangle);
|
||||
|
||||
/* AtkObject */
|
||||
static void cally_rectangle_real_initialize (AtkObject *obj,
|
||||
gpointer data);
|
||||
|
@ -39,8 +39,6 @@
|
||||
#include "cally-root.h"
|
||||
|
||||
/* GObject */
|
||||
static void cally_root_class_init (CallyRootClass *klass);
|
||||
static void cally_root_init (CallyRoot *root);
|
||||
static void cally_root_finalize (GObject *object);
|
||||
|
||||
/* AtkObject.h */
|
||||
|
@ -38,9 +38,6 @@
|
||||
#include "cally-stage.h"
|
||||
#include "cally-actor-private.h"
|
||||
|
||||
static void cally_stage_class_init (CallyStageClass *klass);
|
||||
static void cally_stage_init (CallyStage *stage);
|
||||
|
||||
/* AtkObject.h */
|
||||
static void cally_stage_real_initialize (AtkObject *obj,
|
||||
gpointer data);
|
||||
|
@ -73,8 +73,6 @@
|
||||
|
||||
#include "clutter-main.h"
|
||||
|
||||
static void cally_text_class_init (CallyTextClass *klass);
|
||||
static void cally_text_init (CallyText *cally_text);
|
||||
static void cally_text_finalize (GObject *obj);
|
||||
|
||||
/* AtkObject */
|
||||
|
@ -34,9 +34,6 @@
|
||||
#include "cally-texture.h"
|
||||
#include "cally-actor-private.h"
|
||||
|
||||
static void cally_texture_class_init (CallyTextureClass *klass);
|
||||
static void cally_texture_init (CallyTexture *texture);
|
||||
|
||||
/* AtkObject */
|
||||
static void cally_texture_real_initialize (AtkObject *obj,
|
||||
gpointer data);
|
||||
|
@ -50,9 +50,6 @@
|
||||
#include "cally-root.h"
|
||||
#include "cally-stage.h"
|
||||
|
||||
static void cally_util_class_init (CallyUtilClass *klass);
|
||||
static void cally_util_init (CallyUtil *cally_util);
|
||||
|
||||
/* atkutil.h */
|
||||
|
||||
static guint cally_util_add_global_event_listener (GSignalEmissionHook listener,
|
||||
|
Loading…
Reference in New Issue
Block a user