action stuff: Remove G_GNUC_INTERNAL

This commit is contained in:
Jasper St. Pierre 2013-05-13 12:02:24 -04:00
parent 6c49cd0ea6
commit 8ad384f3dc
3 changed files with 0 additions and 14 deletions

View File

@ -32,24 +32,18 @@ G_BEGIN_DECLS
typedef struct _GtkActionMuxer GtkActionMuxer; typedef struct _GtkActionMuxer GtkActionMuxer;
G_GNUC_INTERNAL
GType gtk_action_muxer_get_type (void); GType gtk_action_muxer_get_type (void);
G_GNUC_INTERNAL
GtkActionMuxer * gtk_action_muxer_new (void); GtkActionMuxer * gtk_action_muxer_new (void);
G_GNUC_INTERNAL
void gtk_action_muxer_insert (GtkActionMuxer *muxer, void gtk_action_muxer_insert (GtkActionMuxer *muxer,
const gchar *prefix, const gchar *prefix,
GActionGroup *group); GActionGroup *group);
G_GNUC_INTERNAL
void gtk_action_muxer_remove (GtkActionMuxer *muxer, void gtk_action_muxer_remove (GtkActionMuxer *muxer,
const gchar *prefix); const gchar *prefix);
G_GNUC_INTERNAL
GtkActionMuxer * gtk_action_muxer_get_parent (GtkActionMuxer *muxer); GtkActionMuxer * gtk_action_muxer_get_parent (GtkActionMuxer *muxer);
G_GNUC_INTERNAL
void gtk_action_muxer_set_parent (GtkActionMuxer *muxer, void gtk_action_muxer_set_parent (GtkActionMuxer *muxer,
GtkActionMuxer *parent); GtkActionMuxer *parent);

View File

@ -47,13 +47,10 @@ struct _GtkActionObservableInterface
GtkActionObserver *observer); GtkActionObserver *observer);
}; };
G_GNUC_INTERNAL
GType gtk_action_observable_get_type (void); GType gtk_action_observable_get_type (void);
G_GNUC_INTERNAL
void gtk_action_observable_register_observer (GtkActionObservable *observable, void gtk_action_observable_register_observer (GtkActionObservable *observable,
const gchar *action_name, const gchar *action_name,
GtkActionObserver *observer); GtkActionObserver *observer);
G_GNUC_INTERNAL
void gtk_action_observable_unregister_observer (GtkActionObservable *observable, void gtk_action_observable_unregister_observer (GtkActionObservable *observable,
const gchar *action_name, const gchar *action_name,
GtkActionObserver *observer); GtkActionObserver *observer);

View File

@ -59,26 +59,21 @@ struct _GtkActionObserverInterface
const gchar *action_name); const gchar *action_name);
}; };
G_GNUC_INTERNAL
GType gtk_action_observer_get_type (void); GType gtk_action_observer_get_type (void);
G_GNUC_INTERNAL
void gtk_action_observer_action_added (GtkActionObserver *observer, void gtk_action_observer_action_added (GtkActionObserver *observer,
GtkActionObservable *observable, GtkActionObservable *observable,
const gchar *action_name, const gchar *action_name,
const GVariantType *parameter_type, const GVariantType *parameter_type,
gboolean enabled, gboolean enabled,
GVariant *state); GVariant *state);
G_GNUC_INTERNAL
void gtk_action_observer_action_enabled_changed (GtkActionObserver *observer, void gtk_action_observer_action_enabled_changed (GtkActionObserver *observer,
GtkActionObservable *observable, GtkActionObservable *observable,
const gchar *action_name, const gchar *action_name,
gboolean enabled); gboolean enabled);
G_GNUC_INTERNAL
void gtk_action_observer_action_state_changed (GtkActionObserver *observer, void gtk_action_observer_action_state_changed (GtkActionObserver *observer,
GtkActionObservable *observable, GtkActionObservable *observable,
const gchar *action_name, const gchar *action_name,
GVariant *state); GVariant *state);
G_GNUC_INTERNAL
void gtk_action_observer_action_removed (GtkActionObserver *observer, void gtk_action_observer_action_removed (GtkActionObserver *observer,
GtkActionObservable *observable, GtkActionObservable *observable,
const gchar *action_name); const gchar *action_name);