diff options
author | Federico Mena Quintero <federico@ximian.com> | 2001-04-03 13:35:48 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-04-03 13:35:48 +0800 |
commit | 7a4bd61930f826ceabf144bf1d4ca06592565e90 (patch) | |
tree | e05e3a2e25f54c8b7015c33311b121131ffb7777 /calendar/cal-client/Makefile.am | |
parent | 44882da7a7193185f7b593ac3799758c5065f6e4 (diff) | |
download | gsoc2013-evolution-7a4bd61930f826ceabf144bf1d4ca06592565e90.tar.gz gsoc2013-evolution-7a4bd61930f826ceabf144bf1d4ca06592565e90.tar.zst gsoc2013-evolution-7a4bd61930f826ceabf144bf1d4ca06592565e90.zip |
Plug leak.
2001-04-02 Federico Mena Quintero <federico@ximian.com>
* gui/e-tasks.c (e_tasks_setup_menus): Plug leak.
* gui/event-editor.c (obj_updated_cb): Do nothing for now until we
think of something sensible to do.
(obj_removed_cb): Likewise.
* gui/dialogs/task-editor.c (obj_updated_cb): Likewise.
(obj_removed_cb): Likewise.
* gui/event-editor.c (dialog_to_comp_object): Plug leak.
svn path=/trunk/; revision=9124
Diffstat (limited to 'calendar/cal-client/Makefile.am')
-rw-r--r-- | calendar/cal-client/Makefile.am | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/calendar/cal-client/Makefile.am b/calendar/cal-client/Makefile.am index f241bf6ce1..28949c8721 100644 --- a/calendar/cal-client/Makefile.am +++ b/calendar/cal-client/Makefile.am @@ -3,11 +3,13 @@ # CORBA_GENERATED = \ - evolution-calendar.h \ evolution-calendar-common.c \ evolution-calendar-skels.c \ evolution-calendar-stubs.c +CORBA_HEADERS_GENERATED = \ + evolution-calendar.h + idls = \ $(srcdir)/../idl/evolution-calendar.idl @@ -37,12 +39,16 @@ libcal_client_la_SOURCES = \ cal-client-types.c \ cal-client.c \ cal-listener.c \ - cal-listener.h - -libcal_clientinclude_HEADERS = \ - cal-client-types.h \ - cal-client.h - + cal-listener.h \ + cal-query.c \ + query-listener.c \ + query-listener.h + +libcal_clientinclude_HEADERS = \ + $(CORBA_HEADERS_GENERATED) \ + cal-client-types.h \ + cal-client.h \ + cal-query.h # # make a static library for use by calendar conduit's shared library |