removed GimpDropType. added GimpDropType.

2001-05-08  Michael Natterer  <mitch@gimp.org>

	* app/appenums.h: removed GimpDropType.
	* app/widgets/widgets-types.h: added GimpDropType.

	* app/gui/channels-dialog.c
	* app/gui/layers-dialog.c: #include "widgets/widgets-types.h"
This commit is contained in:
Michael Natterer 2001-05-08 19:46:57 +00:00 committed by Michael Natterer
parent 9ecde4ea49
commit 715bf7aa39
5 changed files with 20 additions and 7 deletions

View File

@ -1,3 +1,11 @@
2001-05-08 Michael Natterer <mitch@gimp.org>
* app/appenums.h: removed GimpDropType.
* app/widgets/widgets-types.h: added GimpDropType.
* app/gui/channels-dialog.c
* app/gui/layers-dialog.c: #include "widgets/widgets-types.h"
2001-05-08 Michael Natterer <mitch@gimp.org>
* app/Makefile.am

View File

@ -20,13 +20,6 @@
#define __APPENUMS_H__
typedef enum /*< skip >*/
{
GIMP_DROP_NONE,
GIMP_DROP_ABOVE,
GIMP_DROP_BELOW
} GimpDropType;
/* Base image types */
typedef enum
{

View File

@ -26,6 +26,7 @@
#include "libgimpwidgets/gimpwidgets.h"
#include "apptypes.h"
#include "widgets/widgets-types.h"
#include "paint-funcs/paint-funcs.h"

View File

@ -28,6 +28,7 @@
#include "libgimp/gimplimits.h"
#include "apptypes.h"
#include "widgets/widgets-types.h"
#include "paint-funcs/paint-funcs.h"

View File

@ -25,6 +25,16 @@
#include "apptypes.h"
/* enums */
typedef enum
{
GIMP_DROP_NONE,
GIMP_DROP_ABOVE,
GIMP_DROP_BELOW
} GimpDropType;
/* non-widget objects */
typedef struct _GimpDialogFactory GimpDialogFactory;