diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-30 06:19:39 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-30 06:19:39 +0800 |
commit | 5c1c9710338cb7f3b29ed1eac1006bb95f39c048 (patch) | |
tree | dacbe29633e17a82ac619ea4c0a2fd67a650d56d /calendar/gncal-full-day.c | |
parent | b14e3c892ce8feac4e72ab80800fb7b6e0408002 (diff) | |
download | gsoc2013-evolution-5c1c9710338cb7f3b29ed1eac1006bb95f39c048.tar gsoc2013-evolution-5c1c9710338cb7f3b29ed1eac1006bb95f39c048.tar.gz gsoc2013-evolution-5c1c9710338cb7f3b29ed1eac1006bb95f39c048.tar.bz2 gsoc2013-evolution-5c1c9710338cb7f3b29ed1eac1006bb95f39c048.tar.lz gsoc2013-evolution-5c1c9710338cb7f3b29ed1eac1006bb95f39c048.tar.xz gsoc2013-evolution-5c1c9710338cb7f3b29ed1eac1006bb95f39c048.tar.zst gsoc2013-evolution-5c1c9710338cb7f3b29ed1eac1006bb95f39c048.zip |
Various fixes and optimizations; Tagging of the days with appointements.
Various fixes and optimizations; Tagging of the days with
appointements. the 1969 bug is gone. Really.
Miguel.
svn path=/trunk/; revision=201
Diffstat (limited to 'calendar/gncal-full-day.c')
-rw-r--r-- | calendar/gncal-full-day.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/gncal-full-day.c b/calendar/gncal-full-day.c index 335cc2f17a..6b30d15a77 100644 --- a/calendar/gncal-full-day.c +++ b/calendar/gncal-full-day.c @@ -5,11 +5,12 @@ * Authors: Federico Mena <quartic@gimp.org> * Miguel de Icaza <miguel@kernel.org> */ - +#include <config.h> #include <string.h> #include <gdk/gdkkeysyms.h> #include <gtk/gtkdrawingarea.h> #include <gtk/gtktext.h> +#include <libgnomeui/gtkcalendar.h> #include "eventedit.h" #include "gncal-full-day.h" #include "view-utils.h" @@ -465,7 +466,7 @@ child_focus_out (GtkWidget *widget, GdkEventFocus *event, gpointer data) text = gtk_editable_get_chars (GTK_EDITABLE (widget), 0, -1); if (child->ico->summary && strcmp (text, child->ico->summary) == 0) - return; + return FALSE; if (child->ico->summary) g_free (child->ico->summary); |