mirror of https://github.com/GNOME/gimp.git
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:
parent
9ecde4ea49
commit
715bf7aa39
|
@ -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
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
#include "widgets/widgets-types.h"
|
||||
|
||||
#include "paint-funcs/paint-funcs.h"
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#include "libgimp/gimplimits.h"
|
||||
|
||||
#include "apptypes.h"
|
||||
#include "widgets/widgets-types.h"
|
||||
|
||||
#include "paint-funcs/paint-funcs.h"
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue