mirror of https://github.com/GNOME/gimp.git
libgimp/gimpenums.c.tail regenerated.
* libgimp/gimpenums.c.tail * tools/pdbgen/enums.pl: regenerated. svn path=/trunk/; revision=22477
This commit is contained in:
parent
1b379af305
commit
5f56f1e23d
|
@ -16,7 +16,10 @@
|
|||
user folders. Added Win32 specific code and use xdg_user_dir_lookup()
|
||||
on other platforms.
|
||||
|
||||
* libgimpbase/gimpbase.def: regenerated.
|
||||
* libgimp/gimpenums.c.tail
|
||||
* tools/pdbgen/enums.pl: regenerated.
|
||||
|
||||
* libgimpbase/gimpbase.def: updated.
|
||||
|
||||
2007-05-11 Sven Neumann <sven@gimp.org>
|
||||
|
||||
|
|
|
@ -49,6 +49,7 @@ static const GimpGetTypeFunc get_type_funcs[] =
|
|||
gimp_transfer_mode_get_type,
|
||||
gimp_transform_direction_get_type,
|
||||
gimp_transform_resize_get_type,
|
||||
gimp_user_directory_get_type,
|
||||
gimp_vectors_stroke_type_get_type
|
||||
};
|
||||
|
||||
|
@ -100,6 +101,7 @@ static const gchar * const type_names[] =
|
|||
"GimpTransferMode",
|
||||
"GimpTransformDirection",
|
||||
"GimpTransformResize",
|
||||
"GimpUserDirectory",
|
||||
"GimpVectorsStrokeType"
|
||||
};
|
||||
|
||||
|
|
|
@ -348,6 +348,22 @@ package Gimp::CodeGen::enums;
|
|||
GIMP_PROGRESS_COMMAND_PULSE => '4',
|
||||
GIMP_PROGRESS_COMMAND_GET_WINDOW => '5' }
|
||||
},
|
||||
GimpUserDirectory =>
|
||||
{ contig => 1,
|
||||
header => 'libgimpbase/gimpbaseenums.h',
|
||||
symbols => [ qw(GIMP_USER_DIRECTORY_DESKTOP
|
||||
GIMP_USER_DIRECTORY_DOCUMENTS
|
||||
GIMP_USER_DIRECTORY_MUSIC
|
||||
GIMP_USER_DIRECTORY_PICTURES
|
||||
GIMP_USER_DIRECTORY_TEMPLATES
|
||||
GIMP_USER_DIRECTORY_VIDEOS) ],
|
||||
mapping => { GIMP_USER_DIRECTORY_DESKTOP => '0',
|
||||
GIMP_USER_DIRECTORY_DOCUMENTS => '1',
|
||||
GIMP_USER_DIRECTORY_MUSIC => '2',
|
||||
GIMP_USER_DIRECTORY_PICTURES => '3',
|
||||
GIMP_USER_DIRECTORY_TEMPLATES => '4',
|
||||
GIMP_USER_DIRECTORY_VIDEOS => '5' }
|
||||
},
|
||||
GimpVectorsStrokeType =>
|
||||
{ contig => 1,
|
||||
header => 'libgimpbase/gimpbaseenums.h',
|
||||
|
|
Loading…
Reference in New Issue