From e111854f53247ac6bfb84193fe2b3e42502e51c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 2 Dec 2013 16:02:55 +0100 Subject: [PATCH] GCC 4.5 compatibility: don't include deprecated headers. --- src/AbstractFramebuffer.h | 2 +- src/AbstractImage.h | 2 +- src/AbstractTexture.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/AbstractFramebuffer.h b/src/AbstractFramebuffer.h index e5a28be90..b2510a5b8 100644 --- a/src/AbstractFramebuffer.h +++ b/src/AbstractFramebuffer.h @@ -36,7 +36,7 @@ #ifdef CORRADE_GCC45_COMPATIBILITY #include "Buffer.h" -#include "ImageFormat.h" +#include "ColorFormat.h" #endif namespace Magnum { diff --git a/src/AbstractImage.h b/src/AbstractImage.h index 378702a6d..33d9aa757 100644 --- a/src/AbstractImage.h +++ b/src/AbstractImage.h @@ -34,7 +34,7 @@ #include "magnumVisibility.h" #ifdef CORRADE_GCC45_COMPATIBILITY -#include "ImageFormat.h" +#include "ColorFormat.h" #endif namespace Magnum { diff --git a/src/AbstractTexture.h b/src/AbstractTexture.h index 8d1d3c602..596cfe69a 100644 --- a/src/AbstractTexture.h +++ b/src/AbstractTexture.h @@ -34,7 +34,7 @@ #ifdef CORRADE_GCC45_COMPATIBILITY #include "Buffer.h" -#include "ImageFormat.h" +#include "ColorFormat.h" #include "TextureFormat.h" #endif