diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-08-31 05:54:48 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-08-31 05:54:48 +0800 |
commit | 61ec555e80b3e208c09a81bb2f2df530d947d360 (patch) | |
tree | 2c3d3ef3c052f07d1b741ca00eedc697fedcc54d /calendar | |
parent | 151fb928c3191fbf37d34e0f35ff242587fbb307 (diff) | |
download | gsoc2013-evolution-61ec555e80b3e208c09a81bb2f2df530d947d360.tar.gz gsoc2013-evolution-61ec555e80b3e208c09a81bb2f2df530d947d360.tar.zst gsoc2013-evolution-61ec555e80b3e208c09a81bb2f2df530d947d360.zip |
Ensure that the child's allocation height is >= 1.
2000-08-30 Federico Mena Quintero <federico@helixcode.com>
* widgets/e-paned/e-vpaned.c (e_vpaned_size_allocate): Ensure that
the child's allocation height is >= 1.
* widgets/e-paned/e-hpaned.c (e_hpaned_size_allocate): Ensure that
the child's allocation width is >= 1.
2000-08-30 Federico Mena Quintero <federico@helixcode.com>
* ChangeLog: Started a ChangeLog here.
svn path=/trunk/; revision=5123
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 2 | ||||
-rw-r--r-- | calendar/gui/gnome-cal.h | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 839870da44..11254d2b8c 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,7 @@ 2000-08-30 Federico Mena Quintero <federico@helixcode.com> + * gui/gnome-cal.h (GnomeCal): Removed unused field event_editor. + * gui/e-day-view.c (e_day_view_key_press): Oops, set the dtstart/dtend on the component before adding it. (e_day_view_on_editing_stopped): No need to check for an UID. diff --git a/calendar/gui/gnome-cal.h b/calendar/gui/gnome-cal.h index b484caff1e..84d103f830 100644 --- a/calendar/gui/gnome-cal.h +++ b/calendar/gui/gnome-cal.h @@ -88,7 +88,8 @@ typedef struct { The "clicked" signal handlers just return when this is set. */ gboolean ignore_view_button_clicks; - void *event_editor; + /* The signal handler id for our GtkCalendar "day_selected" handler. */ + guint day_selected_id; /* Alarm ID for the midnight refresh function */ gpointer midnight_alarm_refresh_id; |