Reduce the number of unwanted exports

_-prefix most of the get_type functions in a11y/.
There are still some more symbols left.
This commit is contained in:
Matthias Clasen
2011-07-09 16:32:40 -04:00
parent 671565245e
commit d98622b2ea
83 changed files with 363 additions and 370 deletions

View File

@ -24,7 +24,7 @@
G_BEGIN_DECLS
#define GTK_TYPE_MENU_ACCESSIBLE (gtk_menu_accessible_get_type ())
#define GTK_TYPE_MENU_ACCESSIBLE (_gtk_menu_accessible_get_type ())
#define GTK_MENU_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_MENU_ACCESSIBLE, GtkMenuAccessible))
#define GTK_MENU_ACCESSIBLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_MENU_ACCESSIBLE, GtkMenuAccessibleClass))
#define GTK_IS_MENU_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_MENU_ACCESSIBLE))
@ -44,7 +44,7 @@ struct _GtkMenuAccessibleClass
GtkMenuShellAccessibleClass parent_class;
};
GType gtk_menu_accessible_get_type (void);
GType _gtk_menu_accessible_get_type (void);
G_END_DECLS