aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2007-10-12 04:44:33 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2007-10-12 04:44:33 +0800
commit8bd9a3dfa2b20ef6f07f9022bb7bdf1da42bfb67 (patch)
tree19ccb700f6df46cee8ce0c48d5122e1e5914a6d8 /calendar
parentd04eaa26418f68ebbe3a5a52711c72272c979399 (diff)
downloadgsoc2013-evolution-8bd9a3dfa2b20ef6f07f9022bb7bdf1da42bfb67.tar
gsoc2013-evolution-8bd9a3dfa2b20ef6f07f9022bb7bdf1da42bfb67.tar.gz
gsoc2013-evolution-8bd9a3dfa2b20ef6f07f9022bb7bdf1da42bfb67.tar.bz2
gsoc2013-evolution-8bd9a3dfa2b20ef6f07f9022bb7bdf1da42bfb67.tar.lz
gsoc2013-evolution-8bd9a3dfa2b20ef6f07f9022bb7bdf1da42bfb67.tar.xz
gsoc2013-evolution-8bd9a3dfa2b20ef6f07f9022bb7bdf1da42bfb67.tar.zst
gsoc2013-evolution-8bd9a3dfa2b20ef6f07f9022bb7bdf1da42bfb67.zip
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
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/alarm-notify/alarm-queue.c13
2 files changed, 12 insertions, 6 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 00861a8ead..a4107f05b5 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -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
diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c
index b650f2e36b..5c74332d42 100644
--- a/calendar/gui/alarm-notify/alarm-queue.c
+++ b/calendar/gui/alarm-notify/alarm-queue.c
@@ -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/gtkcheckbutton.h>
+#include <gtk/gtkcheckmenuitem.h>
#include <gtk/gtkdialog.h>
#include <gtk/gtkeventbox.h>
-#include <gtk/gtkimage.h>
#include <gtk/gtkframe.h>
+#include <gtk/gtkhbox.h>
+#include <gtk/gtkimage.h>
#include <gtk/gtkimagemenuitem.h>
#include <gtk/gtklabel.h>
-#include <gtk/gtkcheckbutton.h>
-#include <gtk/gtkcheckmenuitem.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>