Mark internal symbol as private
A bunch of private symbols have escaped into the SO; let's rectify this situation by using the '_' private prefix, or making them static as they should have been.
This commit is contained in:
@ -35,7 +35,7 @@
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define CLUTTER_TYPE_SCRIPT_PARSER (clutter_script_parser_get_type ())
|
||||
#define CLUTTER_TYPE_SCRIPT_PARSER (_clutter_script_parser_get_type ())
|
||||
#define CLUTTER_SCRIPT_PARSER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CLUTTER_TYPE_SCRIPT_PARSER, ClutterScriptParser))
|
||||
#define CLUTTER_IS_SCRIPT_PARSER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CLUTTER_TYPE_SCRIPT_PARSER))
|
||||
|
||||
@ -99,7 +99,7 @@ typedef struct {
|
||||
|
||||
void property_info_free (gpointer data);
|
||||
|
||||
GType clutter_script_parser_get_type (void) G_GNUC_CONST;
|
||||
GType _clutter_script_parser_get_type (void) G_GNUC_CONST;
|
||||
|
||||
gboolean _clutter_script_parse_node (ClutterScript *script,
|
||||
GValue *value,
|
||||
|
Reference in New Issue
Block a user