Hide clutter_context_get_default()

The clutter_context_get_default() function is private, but shared
across Clutter. For this reason, it should be prefixed by '_' so
that the symbol is hidden from the shared object.
This commit is contained in:
Emmanuele Bassi
2009-06-17 17:59:54 +01:00
parent 8c676ebd87
commit c6fba47a52
18 changed files with 87 additions and 88 deletions

View File

@ -93,10 +93,10 @@ _clutter_feature_init (void)
if (__features->features_set)
return;
context = clutter_context_get_default ();
context = _clutter_context_get_default ();
__features->flags = (_clutter_features_from_cogl (cogl_get_features ())
| _clutter_backend_get_features (context->backend));
| _clutter_backend_get_features (context->backend));
__features->features_set = TRUE;