mirror of
https://github.com/brl/mutter.git
synced 2025-06-14 01:09:30 +00:00
script: Hide private symbols
A bunch of private functions we use when parsing got exposed accidentaly to the list of public symbols by virtue of not having the leading '_' that we use to filter them out of the shared object — all the while the header that declares them is a private, non installed one. Let's rectify this situation with a bit of minor surgery on the code.
This commit is contained in:
@ -680,9 +680,9 @@ clutter_model_set_custom_property (ClutterScriptable *scriptable,
|
||||
column_name = clutter_model_get_column_name (model, i);
|
||||
columns[i] = i;
|
||||
g_value_init (&v, column_type);
|
||||
clutter_script_parse_node (script, &v, column_name,
|
||||
json_array_get_element (array, i),
|
||||
NULL);
|
||||
_clutter_script_parse_node (script, &v, column_name,
|
||||
json_array_get_element (array, i),
|
||||
NULL);
|
||||
g_value_array_append (values, &v);
|
||||
g_value_unset (&v);
|
||||
}
|
||||
@ -719,9 +719,9 @@ clutter_model_set_custom_property (ClutterScriptable *scriptable,
|
||||
columns[column] = i;
|
||||
g_value_init (&v, col_type);
|
||||
member = json_object_get_member (object, mname);
|
||||
clutter_script_parse_node (script, &v,
|
||||
col_name, member,
|
||||
NULL);
|
||||
_clutter_script_parse_node (script, &v,
|
||||
col_name, member,
|
||||
NULL);
|
||||
g_value_array_append (values, &v);
|
||||
g_value_unset (&v);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user