Expose deprecated symbols whilst building Clutter

Don't use ugly "#undef CLUTTER_DISABLE_DEPRECATED" inside source code
using deprecated symbols; we have the handy CLUTTER_COMPILATION define
that we can use as part of the "disable deprecated" conditional.
This commit is contained in:
Emmanuele Bassi
2011-01-20 13:29:37 +00:00
parent cd96e631f1
commit ef78104227
18 changed files with 11 additions and 21 deletions

View File

@ -32,7 +32,7 @@
G_BEGIN_DECLS
#ifndef CLUTTER_DISABLE_DEPRECATED
#if !defined(CLUTTER_DISABLE_DEPRECATED) || defined(CLUTTER_COMPILATION)
guint clutter_frame_source_add (guint fps,
GSourceFunc func,