From e31faca5ee7ffa753ccda0c9761499aa8bb1f481 Mon Sep 17 00:00:00 2001 From: Chenthill Palanisamy Date: Tue, 31 Jul 2007 18:38:52 +0000 Subject: [PATCH] Changed the way header files are included so that they are picked up from Changed the way header files are included so that they are picked up from the source rather than install area. svn path=/trunk/; revision=7901 --- calendar/ChangeLog | 21 +++++++++++++++++++++ calendar/backends/caldav/create-account.c | 2 +- calendar/backends/caldav/e-cal-backend-caldav.c | 2 +- calendar/backends/contacts/e-cal-backend-contacts.c | 4 ++-- calendar/backends/file/e-cal-backend-file.c | 4 ++-- .../groupwise/e-cal-backend-groupwise-utils.c | 2 +- .../backends/groupwise/e-cal-backend-groupwise.c | 4 ++-- calendar/backends/http/e-cal-backend-http.c | 2 +- calendar/backends/weather/e-weather-source-ccf.c | 2 +- calendar/libecal/e-cal.c | 4 ++-- calendar/libecal/e-cal.h | 4 ++-- calendar/libedata-cal/e-cal-backend-cache.h | 2 +- calendar/libedata-cal/e-cal-backend-sexp.c | 2 +- calendar/libedata-cal/e-cal-backend-sexp.h | 2 +- calendar/libedata-cal/e-cal-backend-util.c | 2 +- calendar/libedata-cal/e-cal-backend.h | 4 ++-- calendar/libedata-cal/e-data-cal-factory.c | 6 +++--- calendar/libedata-cal/e-data-cal-view.c | 2 +- 18 files changed, 46 insertions(+), 25 deletions(-) diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 72afb3c..b93346e 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,24 @@ +2007-07-31 Chenthill Palanisamy + + * backends/caldav/create-account.c: + * backends/caldav/e-cal-backend-caldav.c: + * backends/contacts/e-cal-backend-contacts.c: + * backends/file/e-cal-backend-file.c: + * backends/groupwise/e-cal-backend-groupwise-utils.c: + * backends/groupwise/e-cal-backend-groupwise.c: + * backends/http/e-cal-backend-http.c: + * backends/weather/e-weather-source-ccf.c: + * libecal/e-cal.c: + * libecal/e-cal.h: + * libedata-cal/e-cal-backend-cache.h: + * libedata-cal/e-cal-backend-sexp.c: + * libedata-cal/e-cal-backend-sexp.h: + * libedata-cal/e-cal-backend-util.c: + * libedata-cal/e-cal-backend.h: + * libedata-cal/e-data-cal-factory.c: + * libedata-cal/e-data-cal-view.c: Changed the way header files are included so + that they are picked up from the source rather than install area. + 2007-07-30 Chenthill Palanisamy Fixes a memory corruption. diff --git a/calendar/backends/caldav/create-account.c b/calendar/backends/caldav/create-account.c index ff9c059..949b10b 100644 --- a/calendar/backends/caldav/create-account.c +++ b/calendar/backends/caldav/create-account.c @@ -2,7 +2,7 @@ #include #include #include -#include +#include "libedataserver/e-source-list.h" static GConfClient *conf_client; static GMainLoop *main_loop; diff --git a/calendar/backends/caldav/e-cal-backend-caldav.c b/calendar/backends/caldav/e-cal-backend-caldav.c index 0fe9186..65ca99d 100644 --- a/calendar/backends/caldav/e-cal-backend-caldav.c +++ b/calendar/backends/caldav/e-cal-backend-caldav.c @@ -27,7 +27,7 @@ #include #include #include -#include +#include "libedataserver/e-xml-hash-utils.h" #include #include #include diff --git a/calendar/backends/contacts/e-cal-backend-contacts.c b/calendar/backends/contacts/e-cal-backend-contacts.c index 37e8027..d7fcdc4 100644 --- a/calendar/backends/contacts/e-cal-backend-contacts.c +++ b/calendar/backends/contacts/e-cal-backend-contacts.c @@ -31,7 +31,7 @@ #include "e-cal-backend-contacts.h" #include -#include +#include "libedataserver/e-xml-hash-utils.h" #include #include #include @@ -39,7 +39,7 @@ #include -#include +#include "libedataserver/e-source-list.h" static ECalBackendSyncClass *parent_class; diff --git a/calendar/backends/file/e-cal-backend-file.c b/calendar/backends/file/e-cal-backend-file.c index d4e4570..ea1a063 100644 --- a/calendar/backends/file/e-cal-backend-file.c +++ b/calendar/backends/file/e-cal-backend-file.c @@ -33,8 +33,8 @@ #include #include #include -#include -#include +#include "libedataserver/e-data-server-util.h" +#include "libedataserver/e-xml-hash-utils.h" #include #include #include diff --git a/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c b/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c index 3156a85..48209cd 100644 --- a/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c +++ b/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c @@ -44,7 +44,7 @@ #include #include #include "e-cal-backend-groupwise-utils.h" -#include +#include "libedataserver/e-source-list.h" static gboolean get_recur_instance (ECalComponent *comp, time_t instance_start, time_t instance_end, gpointer data) diff --git a/calendar/backends/groupwise/e-cal-backend-groupwise.c b/calendar/backends/groupwise/e-cal-backend-groupwise.c index c631fb7..fc0d4c2 100644 --- a/calendar/backends/groupwise/e-cal-backend-groupwise.c +++ b/calendar/backends/groupwise/e-cal-backend-groupwise.c @@ -35,8 +35,8 @@ #include #include #include -#include -#include +#include "libedataserver/e-xml-hash-utils.h" +#include "libedataserver/e-url.h" #include #include #include diff --git a/calendar/backends/http/e-cal-backend-http.c b/calendar/backends/http/e-cal-backend-http.c index 7492713..9015667 100644 --- a/calendar/backends/http/e-cal-backend-http.c +++ b/calendar/backends/http/e-cal-backend-http.c @@ -28,7 +28,7 @@ #include #include #include -#include +#include "libedataserver/e-xml-hash-utils.h" #include #include #include diff --git a/calendar/backends/weather/e-weather-source-ccf.c b/calendar/backends/weather/e-weather-source-ccf.c index 56be77f..a5c775a 100644 --- a/calendar/backends/weather/e-weather-source-ccf.c +++ b/calendar/backends/weather/e-weather-source-ccf.c @@ -41,7 +41,7 @@ #ifdef G_OS_WIN32 -#include +#include "libedataserver/e-data-server-util.h" /* The localtime_r() in doesn't guard against localtime() * returning NULL diff --git a/calendar/libecal/e-cal.c b/calendar/libecal/e-cal.c index d2cb190..3f5aee0 100644 --- a/calendar/libecal/e-cal.c +++ b/calendar/libecal/e-cal.c @@ -32,8 +32,8 @@ #include #include -#include -#include +#include "libedataserver/e-component-listener.h" +#include "libedataserver/e-url.h" #include "e-cal-marshal.h" #include "e-cal-time-util.h" #include "e-cal-listener.h" diff --git a/calendar/libecal/e-cal.h b/calendar/libecal/e-cal.h index 99076a4..83ecd29 100644 --- a/calendar/libecal/e-cal.h +++ b/calendar/libecal/e-cal.h @@ -24,8 +24,8 @@ #define E_CAL_H #include -#include -#include +#include "libedataserver/e-source-list.h" +#include "libedataserver/e-source.h" #include #include #include diff --git a/calendar/libedata-cal/e-cal-backend-cache.h b/calendar/libedata-cal/e-cal-backend-cache.h index 750368f..a72aa86 100644 --- a/calendar/libedata-cal/e-cal-backend-cache.h +++ b/calendar/libedata-cal/e-cal-backend-cache.h @@ -22,7 +22,7 @@ #ifndef E_CAL_BACKEND_CACHE_H #define E_CAL_BACKEND_CACHE_H -#include +#include "libedataserver/e-file-cache.h" #include #include diff --git a/calendar/libedata-cal/e-cal-backend-sexp.c b/calendar/libedata-cal/e-cal-backend-sexp.c index 0cb724e..a52864c 100644 --- a/calendar/libedata-cal/e-cal-backend-sexp.c +++ b/calendar/libedata-cal/e-cal-backend-sexp.c @@ -24,7 +24,7 @@ #include #include -#include +#include "libedataserver/e-data-server-util.h" #include #include "e-cal-backend-sexp.h" diff --git a/calendar/libedata-cal/e-cal-backend-sexp.h b/calendar/libedata-cal/e-cal-backend-sexp.h index df740b1..fe9cce5 100644 --- a/calendar/libedata-cal/e-cal-backend-sexp.h +++ b/calendar/libedata-cal/e-cal-backend-sexp.h @@ -28,7 +28,7 @@ #include #include #include -#include +#include "libedataserver/e-sexp.h" G_BEGIN_DECLS diff --git a/calendar/libedata-cal/e-cal-backend-util.c b/calendar/libedata-cal/e-cal-backend-util.c index 11f8e5e..9d6b164 100644 --- a/calendar/libedata-cal/e-cal-backend-util.c +++ b/calendar/libedata-cal/e-cal-backend-util.c @@ -22,7 +22,7 @@ #include #include "e-cal-backend-util.h" -#include +#include "libedataserver/e-account-list.h" static EAccountList *accounts; diff --git a/calendar/libedata-cal/e-cal-backend.h b/calendar/libedata-cal/e-cal-backend.h index 846c287..9a0ec52 100644 --- a/calendar/libedata-cal/e-cal-backend.h +++ b/calendar/libedata-cal/e-cal-backend.h @@ -24,8 +24,8 @@ #ifndef E_CAL_BACKEND_H #define E_CAL_BACKEND_H -#include -#include +#include "libedataserver/e-list.h" +#include "libedataserver/e-source.h" #include #include #include diff --git a/calendar/libedata-cal/e-data-cal-factory.c b/calendar/libedata-cal/e-data-cal-factory.c index 50ed16c..f7065d1 100644 --- a/calendar/libedata-cal/e-data-cal-factory.c +++ b/calendar/libedata-cal/e-data-cal-factory.c @@ -23,9 +23,9 @@ #include #include #include -#include -#include -#include +#include "libedataserver/e-url.h" +#include "libedataserver/e-source.h" +#include "libedataserver/e-data-server-module.h" #include "e-cal-backend.h" #include "e-data-cal.h" #include "e-data-cal-factory.h" diff --git a/calendar/libedata-cal/e-data-cal-view.c b/calendar/libedata-cal/e-data-cal-view.c index 229939c..9857570 100644 --- a/calendar/libedata-cal/e-data-cal-view.c +++ b/calendar/libedata-cal/e-data-cal-view.c @@ -25,7 +25,7 @@ #include #include #include -#include +#include "libedataserver/e-component-listener.h" #include "e-cal-backend-sexp.h" #include "e-data-cal-view.h" -- 2.7.4