mirror of https://github.com/GNOME/gimp.git
bumbed version number to 1.3.8.
2002-07-11 Sven Neumann <sven@gimp.org> * configure.in: bumbed version number to 1.3.8. * app/core/gimpcontainer.c: use gulong for signal handler IDs.
This commit is contained in:
parent
0a8ff4458f
commit
00d408bdd6
|
@ -1,3 +1,9 @@
|
|||
2002-07-11 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* configure.in: bumbed version number to 1.3.8.
|
||||
|
||||
* app/core/gimpcontainer.c: use gulong for signal handler IDs.
|
||||
|
||||
2002-07-09 Sven Neumann <sven@gimp.org>
|
||||
|
||||
Merged bug-fixes from the stable branch:
|
||||
|
|
|
@ -625,7 +625,7 @@ gimp_container_add (GimpContainer *container,
|
|||
{
|
||||
GimpContainerHandler *handler;
|
||||
GList *list;
|
||||
guint handler_id;
|
||||
gulong handler_id;
|
||||
|
||||
g_return_val_if_fail (GIMP_IS_CONTAINER (container), FALSE);
|
||||
g_return_val_if_fail (object != NULL, FALSE);
|
||||
|
@ -679,7 +679,7 @@ gimp_container_remove (GimpContainer *container,
|
|||
{
|
||||
GimpContainerHandler *handler;
|
||||
GList *list;
|
||||
guint handler_id;
|
||||
gulong handler_id;
|
||||
|
||||
g_return_val_if_fail (GIMP_IS_CONTAINER (container), FALSE);
|
||||
g_return_val_if_fail (object != NULL, FALSE);
|
||||
|
@ -886,7 +886,7 @@ static void
|
|||
gimp_container_add_handler_foreach_func (GimpObject *object,
|
||||
GimpContainerHandler *handler)
|
||||
{
|
||||
guint handler_id;
|
||||
gulong handler_id;
|
||||
|
||||
handler_id = g_signal_connect (G_OBJECT (object),
|
||||
handler->signame,
|
||||
|
@ -941,7 +941,7 @@ static void
|
|||
gimp_container_remove_handler_foreach_func (GimpObject *object,
|
||||
GimpContainerHandler *handler)
|
||||
{
|
||||
guint handler_id;
|
||||
gulong handler_id;
|
||||
|
||||
handler_id =
|
||||
GPOINTER_TO_UINT (g_object_get_qdata (G_OBJECT (object),
|
||||
|
|
|
@ -32,7 +32,7 @@ GIMPPRINT_REQUIRED_VERSION=4.2.0
|
|||
#
|
||||
GIMP_MAJOR_VERSION=1
|
||||
GIMP_MINOR_VERSION=3
|
||||
GIMP_MICRO_VERSION=7
|
||||
GIMP_MICRO_VERSION=8
|
||||
GIMP_INTERFACE_AGE=0
|
||||
GIMP_BINARY_AGE=0
|
||||
GIMP_VERSION=$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION.$GIMP_MICRO_VERSION
|
||||
|
@ -791,7 +791,8 @@ fi
|
|||
|
||||
AC_PATH_PROG(SENDMAIL, sendmail, , $sendmail_path)
|
||||
if test "x$SENDMAIL" != "x"; then
|
||||
AC_DEFINE_UNQUOTED(SENDMAIL, "$SENDMAIL", [The MTA used the mail plug-in.])
|
||||
AC_DEFINE_UNQUOTED(SENDMAIL, "$SENDMAIL",
|
||||
[The MTA used by the mail plug-in.])
|
||||
fi
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue