aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@nuclecu.unam.mx>1999-04-20 07:46:58 +0800
committerArturo Espinosa <unammx@src.gnome.org>1999-04-20 07:46:58 +0800
commit1b4cf2aa682062a4b3efce551adc070e49c7c21c (patch)
tree90515f85d492b0be64c09896fdb5844f3c333411
parent09ba26868fe95fb3f83e4fed6eb0ec6388052b49 (diff)
downloadgsoc2013-evolution-1b4cf2aa682062a4b3efce551adc070e49c7c21c.tar
gsoc2013-evolution-1b4cf2aa682062a4b3efce551adc070e49c7c21c.tar.gz
gsoc2013-evolution-1b4cf2aa682062a4b3efce551adc070e49c7c21c.tar.bz2
gsoc2013-evolution-1b4cf2aa682062a4b3efce551adc070e49c7c21c.tar.lz
gsoc2013-evolution-1b4cf2aa682062a4b3efce551adc070e49c7c21c.tar.xz
gsoc2013-evolution-1b4cf2aa682062a4b3efce551adc070e49c7c21c.tar.zst
gsoc2013-evolution-1b4cf2aa682062a4b3efce551adc070e49c7c21c.zip
Bumped version number to 1.0.3.
1999-03-13 Federico Mena Quintero <federico@nuclecu.unam.mx> * configure.in: Bumped version number to 1.0.3. svn path=/trunk/; revision=858
-rw-r--r--calendar/ChangeLog4
-rw-r--r--calendar/gncal-todo.c5
-rw-r--r--calendar/gui/gncal-todo.c5
3 files changed, 14 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index b63cbbc630..948146f481 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,7 @@
+1999-04-19 Miguel de Icaza <miguel@nuclecu.unam.mx>
+
+ * gncal-todo.c (add_activated): Use same hack used in edit_activated
+
1999-04-16 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gncal-todo.c (edit_activated): Kill all grabs from the CList
diff --git a/calendar/gncal-todo.c b/calendar/gncal-todo.c
index 4f2f0345bb..599f85a6c0 100644
--- a/calendar/gncal-todo.c
+++ b/calendar/gncal-todo.c
@@ -258,6 +258,11 @@ delete_todo (GncalTodo *todo)
static void
add_activated (GtkWidget *widget, GncalTodo *todo)
{
+ GtkWidget *w;
+
+ while ((w = gtk_grab_get_current ()) != NULL)
+ gtk_grab_remove (w);
+
add_todo (todo);
}
diff --git a/calendar/gui/gncal-todo.c b/calendar/gui/gncal-todo.c
index 4f2f0345bb..599f85a6c0 100644
--- a/calendar/gui/gncal-todo.c
+++ b/calendar/gui/gncal-todo.c
@@ -258,6 +258,11 @@ delete_todo (GncalTodo *todo)
static void
add_activated (GtkWidget *widget, GncalTodo *todo)
{
+ GtkWidget *w;
+
+ while ((w = gtk_grab_get_current ()) != NULL)
+ gtk_grab_remove (w);
+
add_todo (todo);
}