From e6c2fdd6edd8837295e37a5e6fa29a4b716c5673 Mon Sep 17 00:00:00 2001 From: David Capello Date: Fri, 21 Jan 2011 17:16:21 -0300 Subject: [PATCH] Move pen_type.h to raster directory. --- src/raster/pen.h | 2 +- src/{ => raster}/pen_type.h | 4 ++-- src/settings/settings.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename src/{ => raster}/pen_type.h (93%) diff --git a/src/raster/pen.h b/src/raster/pen.h index 3af3b620e..342716d01 100644 --- a/src/raster/pen.h +++ b/src/raster/pen.h @@ -19,7 +19,7 @@ #ifndef RASTER_PEN_H_INCLUDED #define RASTER_PEN_H_INCLUDED -#include "pen_type.h" +#include "raster/pen_type.h" #include class Image; diff --git a/src/pen_type.h b/src/raster/pen_type.h similarity index 93% rename from src/pen_type.h rename to src/raster/pen_type.h index 3c8bcddc7..d5a75c87a 100644 --- a/src/pen_type.h +++ b/src/raster/pen_type.h @@ -16,8 +16,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef PEN_TYPE_H_INCLUDED -#define PEN_TYPE_H_INCLUDED +#ifndef RASTER_PEN_TYPE_H_INCLUDED +#define RASTER_PEN_TYPE_H_INCLUDED enum PenType { PEN_TYPE_CIRCLE = 0, diff --git a/src/settings/settings.h b/src/settings/settings.h index ced083b2e..83b2a4350 100644 --- a/src/settings/settings.h +++ b/src/settings/settings.h @@ -22,7 +22,7 @@ #include "gfx/rect.h" #include "app/color.h" #include "tiled_mode.h" -#include "pen_type.h" +#include "raster/pen_type.h" class IToolSettings; class IPenSettings;