generate a NULL terminated array.

2005-08-19  Sven Neumann  <sven@gimp.org>

	* app/dialogs/authors.xsl: generate a NULL terminated array.

	* app/dialogs/authors.h: regenerated.

	* app/dialogs/about-dialog.[ch]: embedded the about box into a
	GtkAboutDialog.

	* app/dialogs/dialogs-constructors.c: pass a GimpContext to
	about_dialog_create().
This commit is contained in:
Sven Neumann 2005-08-19 16:32:01 +00:00 committed by Sven Neumann
parent 8e7dab6db9
commit fd7ed3dfd1
6 changed files with 445 additions and 627 deletions

View File

@ -1,7 +1,18 @@
2005-08-19 Sven Neumann <sven@gimp.org>
* app/dialogs/authors.xsl: generate a NULL terminated array.
* app/dialogs/authors.h: regenerated.
* app/dialogs/about-dialog.[ch]: embedded the about box into a
GtkAboutDialog.
* app/dialogs/dialogs-constructors.c: pass a GimpContext to
about_dialog_create().
2005-08-19 Nathan Summers <rock@gimp.org> 2005-08-19 Nathan Summers <rock@gimp.org>
* plugins/poppler.c: removed some extraneous commas * plugins/common/poppler.c: removed some extraneous commas.
2005-08-19 Michael Natterer <mitch@gimp.org> 2005-08-19 Michael Natterer <mitch@gimp.org>

File diff suppressed because it is too large Load Diff

View File

@ -20,7 +20,7 @@
#define __ABOUT_DIALOG_H__ #define __ABOUT_DIALOG_H__
GtkWidget * about_dialog_create (void); GtkWidget * about_dialog_create (GimpContext *context);
#endif /* __ABOUT_DIALOG_H__ */ #endif /* __ABOUT_DIALOG_H__ */

View File

@ -200,5 +200,5 @@ static const gchar *authors[] =
"Calvin Williamson", "Calvin Williamson",
"Matthew Wilson", "Matthew Wilson",
"Shirasaki Yasuhiro", "Shirasaki Yasuhiro",
NULL
}; };

View File

@ -16,7 +16,7 @@
static const gchar *authors[] = static const gchar *authors[] =
{ {
</xsl:text><xsl:apply-templates select="contributor" /><xsl:text> </xsl:text><xsl:apply-templates select="contributor" /><xsl:text> NULL
}; };
</xsl:text> </xsl:text>
</xsl:template> </xsl:template>

View File

@ -155,7 +155,7 @@ dialogs_about_get (GimpDialogFactory *factory,
GimpContext *context, GimpContext *context,
gint preview_size) gint preview_size)
{ {
return about_dialog_create (); return about_dialog_create (context);
} }
GtkWidget * GtkWidget *