mirror of https://github.com/GNOME/gimp.git
another build fix for compilers that don't support C99 extensions.
2005-02-27 Sven Neumann <sven@gimp.org> * plug-ins/imagemap/imap_menu.c (menu_build_mru_items): another build fix for compilers that don't support C99 extensions.
This commit is contained in:
parent
b42df335e2
commit
ca3560642d
|
@ -1,3 +1,8 @@
|
|||
2005-02-27 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plug-ins/imagemap/imap_menu.c (menu_build_mru_items): another
|
||||
build fix for compilers that don't support C99 extensions.
|
||||
|
||||
2005-02-27 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* libgimpwidgets/gimpintcombobox.c: added an "ellipsize" construct
|
||||
|
|
|
@ -421,11 +421,12 @@ make_menu(GtkWidget *main_vbox, GtkWidget *window)
|
|||
void
|
||||
menu_build_mru_items(MRU_t *mru)
|
||||
{
|
||||
return;
|
||||
GList *p;
|
||||
gint position = 0;
|
||||
int i;
|
||||
|
||||
return;
|
||||
|
||||
if (_menu.nr_off_mru_items) {
|
||||
GList *children;
|
||||
|
||||
|
|
Loading…
Reference in New Issue