From 4717feb02b84faabaf5d4d84a473ad6ad231da3c Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 30 Sep 2009 12:00:48 +0200 Subject: [PATCH] image: move into objects Signed-off-by: Julien Danjou --- CMakeLists.txt | 2 +- draw.h | 2 +- image.c => objects/image.c | 0 image.h => objects/image.h | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename image.c => objects/image.c (100%) rename image.h => objects/image.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 270cc3a66..0ed091cb0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -60,7 +60,7 @@ set(AWE_SRCS ${SOURCE_DIR}/objects/tag.c ${SOURCE_DIR}/objects/widget.c ${SOURCE_DIR}/xwindow.c - ${SOURCE_DIR}/image.c + ${SOURCE_DIR}/objects/image.c ${SOURCE_DIR}/draw.c ${SOURCE_DIR}/font.c ${SOURCE_DIR}/color.c diff --git a/draw.h b/draw.h index af6d1bf9e..6bafb007d 100644 --- a/draw.h +++ b/draw.h @@ -27,7 +27,7 @@ #include -#include "image.h" +#include "objects/image.h" #include "color.h" #include "common/array.h" diff --git a/image.c b/objects/image.c similarity index 100% rename from image.c rename to objects/image.c diff --git a/image.h b/objects/image.h similarity index 100% rename from image.h rename to objects/image.h