mirror of https://github.com/GNOME/gimp.git
keep the file extension defines here, just as we do it for brushes.
2006-10-03 Michael Natterer <mitch@gimp.org> * app/core/gimpgradient-load.h: keep the file extension defines here, just as we do it for brushes. * app/core/gimpgradient.h: removed them here. * app/core/gimpgradient.c: changed accordingly.
This commit is contained in:
parent
bd0ddb5b40
commit
3df625b7ff
|
@ -1,3 +1,12 @@
|
|||
2006-10-03 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/core/gimpgradient-load.h: keep the file extension defines
|
||||
here, just as we do it for brushes.
|
||||
|
||||
* app/core/gimpgradient.h: removed them here.
|
||||
|
||||
* app/core/gimpgradient.c: changed accordingly.
|
||||
|
||||
2006-10-03 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/core/gimpimage-convert.[ch]
|
||||
|
|
|
@ -20,6 +20,10 @@
|
|||
#define __GIMP_GRADIENT_LOAD_H__
|
||||
|
||||
|
||||
#define GIMP_GRADIENT_FILE_EXTENSION ".ggr"
|
||||
#define GIMP_GRADIENT_SVG_FILE_EXTENSION ".svg"
|
||||
|
||||
|
||||
GList * gimp_gradient_load (const gchar *filename,
|
||||
GError **error);
|
||||
GList * gimp_gradient_load_svg (const gchar *filename,
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
|
||||
#include "gimpcontext.h"
|
||||
#include "gimpgradient.h"
|
||||
#include "gimpgradient-load.h"
|
||||
#include "gimpgradient-save.h"
|
||||
|
||||
|
||||
|
|
|
@ -23,9 +23,6 @@
|
|||
#include "gimpdata.h"
|
||||
|
||||
|
||||
#define GIMP_GRADIENT_FILE_EXTENSION ".ggr"
|
||||
#define GIMP_GRADIENT_SVG_FILE_EXTENSION ".svg"
|
||||
|
||||
#define GIMP_GRADIENT_DEFAULT_SAMPLE_SIZE 40
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue