From 3ece2f7e4ed01bbe03eeb48e8365cb44b3669d7c Mon Sep 17 00:00:00 2001 From: jaycox Date: Sat, 10 Apr 1999 04:13:42 +0000 Subject: [PATCH] new file containing typedef for GimpHistogram. * app/gimphistogramF.h: new file containing typedef for GimpHistogram. * app/gimphistogram.h: moved GimpHistogram typedef to gimphistogramF.h * app/lut_funcs.h: include gimphistogramF.h again now that the file actually exists. --- ChangeLog | 11 +++++++++++ app/base/gimphistogram.h | 3 +-- app/gimphistogram.h | 3 +-- app/gimphistogramF.h | 6 ++++++ 4 files changed, 19 insertions(+), 4 deletions(-) create mode 100644 app/gimphistogramF.h diff --git a/ChangeLog b/ChangeLog index d267080538..5d48292f0b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +1999-04-09 Jay Cox + + * app/gimphistogramF.h: new file containing typedef for + GimpHistogram. + + * app/gimphistogram.h: moved GimpHistogram typedef to + gimphistogramF.h + + * app/lut_funcs.h: include gimphistogramF.h again now that the + file actually exists. + Fri Apr 9 18:58:41 1999 Raph Levien * app/lut_funcs.h: changed the include to "gimphistogram.h" rather diff --git a/app/base/gimphistogram.h b/app/base/gimphistogram.h index f9a39625e8..654038b9d1 100644 --- a/app/base/gimphistogram.h +++ b/app/base/gimphistogram.h @@ -23,6 +23,7 @@ #include "pixel_region.h" #include "gimpdrawable.h" +#include "gimphistogramF.h" #define HISTOGRAM_VALUE 0 #define HISTOGRAM_RED 1 @@ -30,8 +31,6 @@ #define HISTOGRAM_BLUE 3 #define HISTOGRAM_ALPHA 4 -typedef struct _GimpHistogram GimpHistogram; - GimpHistogram *gimp_histogram_new (); void gimp_histogram_free (GimpHistogram *); diff --git a/app/gimphistogram.h b/app/gimphistogram.h index f9a39625e8..654038b9d1 100644 --- a/app/gimphistogram.h +++ b/app/gimphistogram.h @@ -23,6 +23,7 @@ #include "pixel_region.h" #include "gimpdrawable.h" +#include "gimphistogramF.h" #define HISTOGRAM_VALUE 0 #define HISTOGRAM_RED 1 @@ -30,8 +31,6 @@ #define HISTOGRAM_BLUE 3 #define HISTOGRAM_ALPHA 4 -typedef struct _GimpHistogram GimpHistogram; - GimpHistogram *gimp_histogram_new (); void gimp_histogram_free (GimpHistogram *); diff --git a/app/gimphistogramF.h b/app/gimphistogramF.h new file mode 100644 index 0000000000..f6c5d00185 --- /dev/null +++ b/app/gimphistogramF.h @@ -0,0 +1,6 @@ +#ifndef __GIMP_HISTOGRAM_F_H__ +#define __GIMP_HISTOGRAM_F_H__ + +typedef struct _GimpHistogram GimpHistogram; + +#endif /* __GIMP_HISTOGRAM_F_H__ */