diff options
author | JP Rosevear <jpr@ximian.com> | 2001-05-09 04:26:29 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-05-09 04:26:29 +0800 |
commit | c20e677a134e5297a8400772d68a1ca91c97a7a7 (patch) | |
tree | 73b4edf45ba2955795e17822e0a0ca6f05ee44af | |
parent | 6d353978e7f9ad61636d40f8713fa1b5c649ca54 (diff) | |
download | gsoc2013-evolution-c20e677a134e5297a8400772d68a1ca91c97a7a7.tar gsoc2013-evolution-c20e677a134e5297a8400772d68a1ca91c97a7a7.tar.gz gsoc2013-evolution-c20e677a134e5297a8400772d68a1ca91c97a7a7.tar.bz2 gsoc2013-evolution-c20e677a134e5297a8400772d68a1ca91c97a7a7.tar.lz gsoc2013-evolution-c20e677a134e5297a8400772d68a1ca91c97a7a7.tar.xz gsoc2013-evolution-c20e677a134e5297a8400772d68a1ca91c97a7a7.tar.zst gsoc2013-evolution-c20e677a134e5297a8400772d68a1ca91c97a7a7.zip |
free the alarm component if it doesn't have a parent, rather than if it
2001-05-08 JP Rosevear <jpr@ximian.com>
* cal-util/cal-component.c (cal_component_alarm_free):
(cal_component_alarm_free): free the alarm component if it doesn't
have a parent, rather than if it does
* gui/Makefile.am: sanitize LD_ADDS and CFLAGS so the libtool
lines are shorter (fixes problem on solaries due to sed)
svn path=/trunk/; revision=9720
-rw-r--r-- | calendar/ChangeLog | 9 | ||||
-rw-r--r-- | calendar/cal-util/cal-component.c | 2 | ||||
-rw-r--r-- | calendar/gui/Makefile.am | 9 |
3 files changed, 15 insertions, 5 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index ef4632b9a4..39c007d1f3 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,12 @@ +2001-05-08 JP Rosevear <jpr@ximian.com> + + * cal-util/cal-component.c (cal_component_alarm_free): + (cal_component_alarm_free): free the alarm component if it doesn't + have a parent, rather than if it does + + * gui/Makefile.am: sanitize LD_ADDS and CFLAGS so the libtool + lines are shorter (fixes problem on solaries due to sed) + 2001-05-07 JP Rosevear <jpr@ximian.com> * pcs/cal-factory.[hc]: Convert to bonobo xobject diff --git a/calendar/cal-util/cal-component.c b/calendar/cal-util/cal-component.c index 237bf56842..d43234617a 100644 --- a/calendar/cal-util/cal-component.c +++ b/calendar/cal-util/cal-component.c @@ -4003,7 +4003,7 @@ cal_component_alarm_free (CalComponentAlarm *alarm) g_assert (alarm->icalcomp != NULL); - if (icalcomponent_get_parent (alarm->icalcomp) != NULL) + if (icalcomponent_get_parent (alarm->icalcomp) == NULL) icalcomponent_free (alarm->icalcomp); alarm->icalcomp = NULL; diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am index 42bbcd51de..292e1ebd28 100644 --- a/calendar/gui/Makefile.am +++ b/calendar/gui/Makefile.am @@ -32,8 +32,9 @@ INCLUDES = \ -I$(top_srcdir)/widgets \ -I$(top_srcdir)/executive-summary \ -I$(includedir) \ - $(BONOBO_VFS_GNOME_CFLAGS) \ - $(EXTRA_GNOME_CFLAGS) \ + $(BONOBO_HTML_GNOME_CFLAGS) \ + $(GNOME_VFS_CFLAGS) \ + $(GAL_CFLAGS) \ -DEVOLUTION_DATADIR=\""$(datadir)"\" \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ -DEVOLUTION_LOCALEDIR=\""$(localedir)"\" @@ -124,8 +125,8 @@ evolution_calendar_LDADD = \ $(top_builddir)/widgets/menus/libmenus.la \ dialogs/libcal-dialogs.a \ $(BONOBO_HTML_GNOME_LIBS) \ - $(BONOBO_VFS_GNOME_LIBS) \ - $(EXTRA_GNOME_LIBS) \ + $(GNOME_VFS_LIBS) \ + $(GAL_LIBS) \ $(INTLLIBS) #evolution_calendar_LDFLAGS = `gnome-config --libs gdk_pixbuf` |