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>
|
||||
|
||||
* plug-ins/script-fu/script-fu-scripts.c (script_fu_load_script):
|
||||
|
|
|
@ -41,8 +41,8 @@ typedef struct
|
|||
{
|
||||
ExportFunc default_action;
|
||||
ExportFunc alt_action;
|
||||
gchar *reason;
|
||||
gchar *possibilities[2];
|
||||
const gchar *reason;
|
||||
const gchar *possibilities[2];
|
||||
gint choice;
|
||||
} ExportAction;
|
||||
|
||||
|
|
Loading…
Reference in New Issue