mirror of https://github.com/GNOME/gimp.git
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:
parent
8e7dab6db9
commit
fd7ed3dfd1
15
ChangeLog
15
ChangeLog
|
@ -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
|
@ -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__ */
|
||||||
|
|
|
@ -200,5 +200,5 @@ static const gchar *authors[] =
|
||||||
"Calvin Williamson",
|
"Calvin Williamson",
|
||||||
"Matthew Wilson",
|
"Matthew Wilson",
|
||||||
"Shirasaki Yasuhiro",
|
"Shirasaki Yasuhiro",
|
||||||
|
NULL
|
||||||
};
|
};
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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 *
|
||||||
|
|
Loading…
Reference in New Issue