summaryrefslogtreecommitdiffstats
path: root/client/gui/softtexture.h
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2011-01-25 12:27:19 +0200
committerAlon Levy <alevy@redhat.com>2011-01-25 17:29:31 +0200
commit9076e2e9574531443e945e49f9acb6ccaf5458f5 (patch)
treee776957bba25672201188b08b6479e13a707d98f /client/gui/softtexture.h
parent6fb222e4f3a1cd767ec0b32c51fae94313b29fb1 (diff)
downloadspice-9076e2e9574531443e945e49f9acb6ccaf5458f5.tar.gz
spice-9076e2e9574531443e945e49f9acb6ccaf5458f5.tar.xz
spice-9076e2e9574531443e945e49f9acb6ccaf5458f5.zip
client/cegui: cegui 0.6.0 gcc 4.6.0 related fix
cegui doesn't include stddef required for ptrdiff_t type, we include it for it.
Diffstat (limited to 'client/gui/softtexture.h')
-rw-r--r--client/gui/softtexture.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/client/gui/softtexture.h b/client/gui/softtexture.h
index 37617f29..788795ff 100644
--- a/client/gui/softtexture.h
+++ b/client/gui/softtexture.h
@@ -3,6 +3,9 @@
#define _softtexture_h_
#include <stdint.h>
+/* CEGUI 0.6 bug, CEGUITexture.h doesn't include this, we need to */
+#include <cstddef>
+
#include "CEGUIBase.h"
#include "CEGUITexture.h"