Include clutter-json.h, not json-types.h

The json-types.h header is found by the mere fact of it being
in the project; if we are compiling against the system JSON-GLib
this could be horribly out of date.

We need to use clutter-json.h, which will include the right
header for us.
This commit is contained in:
Emmanuele Bassi 2009-08-12 15:57:25 +01:00
parent cc6aa6e4d5
commit 2b70b0d4ed

View File

@ -27,7 +27,7 @@
#define __CLUTTER_SCRIPT_PRIVATE_H__ #define __CLUTTER_SCRIPT_PRIVATE_H__
#include <glib-object.h> #include <glib-object.h>
#include "json/json-types.h" #include "clutter-json.h"
#include "clutter-color.h" #include "clutter-color.h"
#include "clutter-types.h" #include "clutter-types.h"
#include "clutter-script.h" #include "clutter-script.h"