From 2b70b0d4ed791e8bc25b59eb3b2e9dbeb8201b11 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Wed, 12 Aug 2009 15:57:25 +0100 Subject: [PATCH] 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. --- clutter/clutter-script-private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter/clutter-script-private.h b/clutter/clutter-script-private.h index 7a3eae98f..7fcbae7e6 100644 --- a/clutter/clutter-script-private.h +++ b/clutter/clutter-script-private.h @@ -27,7 +27,7 @@ #define __CLUTTER_SCRIPT_PRIVATE_H__ #include -#include "json/json-types.h" +#include "clutter-json.h" #include "clutter-color.h" #include "clutter-types.h" #include "clutter-script.h"