Miscellaneous changes related to bug #437579.

2007-10-11  Matthew Barnes  <mbarnes@redhat.com>

	Miscellaneous changes related to bug #437579.

	* configure.in:
	Put a blank line between the configuration summary and the
	final "now type make" message.

	* mail/em-format.c (em_format_add_puri):
	Use G_GSIZE_FORMAT when printing a gsize/size_t to make compilers
	on all arches happy.

	* plugins/mail-notification/mail-notification.c:
	Put the notification_callback() declaration inside a
	#ifdef HAVE_LIBNOTIFY block to avoid a potential compiler warning.

	* calendar/gui/alarm-notify/alarm-queue.c:
	Fix an implicit GTK+ function declaration on x86_64.


svn path=/trunk/; revision=34378
This commit is contained in:
Matthew Barnes
2007-10-11 20:44:33 +00:00
committed by Matthew Barnes
parent d04eaa2641
commit 8bd9a3dfa2
8 changed files with 39 additions and 12 deletions

View File

@ -1,3 +1,9 @@
2007-10-11 Matthew Barnes <mbarnes@redhat.com>
* configure.in:
Put a blank line between the configuration summary and the
final "now type make" message.
2007-10-11 Tobias Mueller <muelli@auftrags-killer.org>
** Fixes bug 360134

View File

@ -1,3 +1,8 @@
2007-10-11 Matthew Barnes <mbarnes@redhat.com>
* gui/alarm-notify/alarm-queue.c:
Fix an implicit GTK+ function declaration on x86_64.
2007-10-09 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #437579

View File

@ -28,21 +28,22 @@
#include <bonobo/bonobo-object.h>
#include <bonobo/bonobo-exception.h>
#include <bonobo/bonobo-main.h>
#include <gtk/gtksignal.h>
#include <gtk/gtkbox.h>
#include <gtk/gtkvbox.h>
#include <gtk/gtkhbox.h>
#include <gtk/gtkdialog.h>
#include <gtk/gtkeventbox.h>
#include <gtk/gtkimage.h>
#include <gtk/gtkframe.h>
#include <gtk/gtkimagemenuitem.h>
#include <gtk/gtklabel.h>
#include <gtk/gtkcheckbutton.h>
#include <gtk/gtkcheckmenuitem.h>
#include <gtk/gtkdialog.h>
#include <gtk/gtkeventbox.h>
#include <gtk/gtkframe.h>
#include <gtk/gtkhbox.h>
#include <gtk/gtkimage.h>
#include <gtk/gtkimagemenuitem.h>
#include <gtk/gtklabel.h>
#include <gtk/gtkmain.h>
#include <gtk/gtksignal.h>
#include <gtk/gtkstatusicon.h>
#include <gtk/gtkstock.h>
#include <gtk/gtktooltips.h>
#include <gtk/gtkvbox.h>
#include <gtk/gtkversion.h>
#include <glib/gi18n.h>
#include <libgnome/gnome-exec.h>

View File

@ -2016,4 +2016,5 @@ echo "\
SSL support: $msg_ssl
SMIME support: $msg_smime
Plugins: $msg_plugins
DBus API version $DBUS_VERSION"
DBus API version $DBUS_VERSION
"

View File

@ -1,3 +1,9 @@
2007-10-11 Matthew Barnes <mbarnes@redhat.com>
* em-format.c (em_format_add_puri):
Use G_GSIZE_FORMAT when printing a gsize/size_t to make compilers
on all arches happy.
2007-10-11 Milan Crha <mcrha@redhat.com>
** Fix for bug #323977

View File

@ -366,7 +366,9 @@ em_format_add_puri(EMFormat *emf, size_t size, const char *cid, CamelMimePart *p
d(printf("adding puri for part: %s\n", emf->part_id->str));
if (size < sizeof(*puri)) {
g_warning ("size (%d) less than size of puri\n", size);
g_warning (
"size (%" G_GSIZE_FORMAT
") less than size of puri\n", size);
size = sizeof (*puri);
}

View File

@ -1,3 +1,9 @@
2007-10-11 Matthew Barnes <mbarnes@redhat.com>
* mail-notification.c:
Put the notification_callback() declaration inside a
#ifdef HAVE_LIBNOTIFY block to avoid a potential compiler warning.
2007-08-03 Johnny Jacob <jjohnny@novell.com>
** Fix for bug #458822 from Anand V M <avmuttagi@gmail.com>

View File

@ -46,12 +46,12 @@
int e_plugin_lib_enable (EPluginLib *ep, int enable);
void org_gnome_mail_new_notify (EPlugin *ep, EMEventTargetFolder *t);
void org_gnome_mail_read_notify (EPlugin *ep, EMEventTargetMessage *t);
static gboolean notification_callback (gpointer notify);
static gboolean enabled = FALSE;
static GtkStatusIcon *status_icon = NULL;
#ifdef HAVE_LIBNOTIFY
static gboolean notification_callback (gpointer notify);
static NotifyNotification *notify = NULL;
#endif