mirror of https://github.com/GNOME/gimp.git
make string members const.
2008-09-11 Michael Natterer <mitch@gimp.org> * libgimp/gimpexport.c (struct ExportAction): make string members const. svn path=/trunk/; revision=26924
This commit is contained in:
parent
53d82016bc
commit
5b8abde69f
|
@ -1,3 +1,8 @@
|
||||||
|
2008-09-11 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* libgimp/gimpexport.c (struct ExportAction): make string members
|
||||||
|
const.
|
||||||
|
|
||||||
2008-09-11 Michael Natterer <mitch@gimp.org>
|
2008-09-11 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* plug-ins/script-fu/script-fu-scripts.c (script_fu_load_script):
|
* plug-ins/script-fu/script-fu-scripts.c (script_fu_load_script):
|
||||||
|
|
|
@ -39,11 +39,11 @@ typedef void (* ExportFunc) (gint32 imageID,
|
||||||
/* the export action structure */
|
/* the export action structure */
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
ExportFunc default_action;
|
ExportFunc default_action;
|
||||||
ExportFunc alt_action;
|
ExportFunc alt_action;
|
||||||
gchar *reason;
|
const gchar *reason;
|
||||||
gchar *possibilities[2];
|
const gchar *possibilities[2];
|
||||||
gint choice;
|
gint choice;
|
||||||
} ExportAction;
|
} ExportAction;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue