[evolution-data-server] Correct spacings.
- From: Chenthill Palanisamy <pchen src gnome org>
- To: svn-commits-list gnome org
- Subject: [evolution-data-server] Correct spacings.
- Date: Mon, 13 Jul 2009 20:53:32 +0000 (UTC)
commit ded005af8ac2b4d7de8433ed6c2302e1e768a393
Author: Chenthill Palanisamy <pchenthill novell com>
Date: Tue Jul 14 02:13:40 2009 +0530
Correct spacings.
calendar/libedata-cal/e-cal-backend-file-store.h | 4 +-
calendar/libedata-cal/e-cal-backend-store.h | 66 +++++++++++-----------
2 files changed, 35 insertions(+), 35 deletions(-)
---
diff --git a/calendar/libedata-cal/e-cal-backend-file-store.h b/calendar/libedata-cal/e-cal-backend-file-store.h
index 9548c99..55aa6a0 100644
--- a/calendar/libedata-cal/e-cal-backend-file-store.h
+++ b/calendar/libedata-cal/e-cal-backend-file-store.h
@@ -45,11 +45,11 @@ G_BEGIN_DECLS
(G_TYPE_INSTANCE_GET_CLASS ((obj), E_TYPE_CAL_BACKEND_FILE_STORE, ECalBackendFileStoreClass))
typedef struct {
- ECalBackendStore parent;
+ ECalBackendStore parent;
} ECalBackendFileStore;
typedef struct {
- ECalBackendStoreClass parent_class;
+ ECalBackendStoreClass parent_class;
} ECalBackendFileStoreClass;
GType e_cal_backend_file_store_get_type (void);
diff --git a/calendar/libedata-cal/e-cal-backend-store.h b/calendar/libedata-cal/e-cal-backend-store.h
index cea1bf1..e517912 100644
--- a/calendar/libedata-cal/e-cal-backend-store.h
+++ b/calendar/libedata-cal/e-cal-backend-store.h
@@ -46,32 +46,32 @@ G_BEGIN_DECLS
(G_TYPE_INSTANCE_GET_CLASS ((obj), E_TYPE_CAL_BACKEND_STORE, ECalBackendStoreClass))
typedef struct {
- GObject parent;
+ GObject parent;
} ECalBackendStore;
typedef struct {
- GObjectClass parent_class;
+ GObjectClass parent_class;
- /* virtual methods */
- gboolean (* load) (ECalBackendStore *store);
-
- ECalComponent *(* get_component) (ECalBackendStore *store, const gchar *uid, const gchar *rid);
- gboolean (* put_component) (ECalBackendStore *store, ECalComponent *comp);
- gboolean (* remove_component) (ECalBackendStore *store, const gchar *uid, const gchar *rid);
- GSList *(* get_components_by_uid) (ECalBackendStore *store, const gchar *uid);
+ /* virtual methods */
+ gboolean (*load) (ECalBackendStore *store);
+
+ ECalComponent * (*get_component) (ECalBackendStore *store, const gchar *uid, const gchar *rid);
+ gboolean (*put_component) (ECalBackendStore *store, ECalComponent *comp);
+ gboolean (*remove_component) (ECalBackendStore *store, const gchar *uid, const gchar *rid);
+ GSList * (*get_components_by_uid) (ECalBackendStore *store, const gchar *uid);
- const icaltimezone *(* get_timezone) (ECalBackendStore *store, const gchar *tzid);
- gboolean (* put_timezone) (ECalBackendStore *store, const icaltimezone *zone);
- gboolean (* remove_timezone) (ECalBackendStore *store, const gchar *tzid);
+ const icaltimezone * (*get_timezone) (ECalBackendStore *store, const gchar *tzid);
+ gboolean (*put_timezone) (ECalBackendStore *store, const icaltimezone *zone);
+ gboolean (*remove_timezone) (ECalBackendStore *store, const gchar *tzid);
- const icaltimezone *(* get_default_timezone) (ECalBackendStore *store);
- gboolean (* set_default_timezone) (ECalBackendStore *store, const icaltimezone *zone);
+ const icaltimezone * (*get_default_timezone) (ECalBackendStore *store);
+ gboolean (*set_default_timezone) (ECalBackendStore *store, const icaltimezone *zone);
- void (* thaw_changes) (ECalBackendStore *store);
- void (* freeze_changes) (ECalBackendStore *store);
+ void (*thaw_changes) (ECalBackendStore *store);
+ void (*freeze_changes) (ECalBackendStore *store);
- const gchar *(* get_key) (ECalBackendStore *store, const gchar *key);
- gboolean (* put_key) (ECalBackendStore *store, const gchar *key, const gchar *value);
+ const gchar *(*get_key) (ECalBackendStore *store, const gchar *key);
+ gboolean (*put_key) (ECalBackendStore *store, const gchar *key, const gchar *value);
} ECalBackendStoreClass;
@@ -79,21 +79,21 @@ GType e_cal_backend_store_get_type (void);
const char *e_cal_backend_store_get_path (ECalBackendStore *store);
-gboolean e_cal_backend_store_load (ECalBackendStore *store);
-ECalComponent *e_cal_backend_store_get_component (ECalBackendStore *store, const gchar *uid, const gchar *rid);
-gboolean e_cal_backend_store_put_component (ECalBackendStore *store, ECalComponent *comp);
-gboolean e_cal_backend_store_remove_component (ECalBackendStore *store, const gchar *uid, const gchar *rid);
-const icaltimezone *e_cal_backend_store_get_timezone (ECalBackendStore *store, const gchar *tzid);
-gboolean e_cal_backend_store_put_timezone (ECalBackendStore *store, const icaltimezone *zone);
-gboolean e_cal_backend_store_remove_timezone (ECalBackendStore *store, const gchar *tzid);
-const icaltimezone *e_cal_backend_store_get_default_timezone (ECalBackendStore *store);
-gboolean e_cal_backend_store_set_default_timezone (ECalBackendStore *store, const icaltimezone *zone);
-GSList *e_cal_backend_store_get_components_by_uid (ECalBackendStore *store, const gchar *uid);
-GSList *e_cal_backend_store_get_objects_list (ECalBackendStore *store, const gchar *sexp);
-const gchar *e_cal_backend_store_get_key (ECalBackendStore *store, const gchar *key);
-gboolean e_cal_backend_store_put_key (ECalBackendStore *store, const gchar *key, const gchar *value);
-void e_cal_backend_store_thaw_changes (ECalBackendStore *store);
-void e_cal_backend_store_freeze_changes (ECalBackendStore *store);
+gboolean e_cal_backend_store_load (ECalBackendStore *store);
+ECalComponent * e_cal_backend_store_get_component (ECalBackendStore *store, const gchar *uid, const gchar *rid);
+gboolean e_cal_backend_store_put_component (ECalBackendStore *store, ECalComponent *comp);
+gboolean e_cal_backend_store_remove_component (ECalBackendStore *store, const gchar *uid, const gchar *rid);
+const icaltimezone * e_cal_backend_store_get_timezone (ECalBackendStore *store, const gchar *tzid);
+gboolean e_cal_backend_store_put_timezone (ECalBackendStore *store, const icaltimezone *zone);
+gboolean e_cal_backend_store_remove_timezone (ECalBackendStore *store, const gchar *tzid);
+const icaltimezone * e_cal_backend_store_get_default_timezone (ECalBackendStore *store);
+gboolean e_cal_backend_store_set_default_timezone (ECalBackendStore *store, const icaltimezone *zone);
+GSList * e_cal_backend_store_get_components_by_uid (ECalBackendStore *store, const gchar *uid);
+GSList * e_cal_backend_store_get_objects_list (ECalBackendStore *store, const gchar *sexp);
+const gchar * e_cal_backend_store_get_key (ECalBackendStore *store, const gchar *key);
+gboolean e_cal_backend_store_put_key (ECalBackendStore *store, const gchar *key, const gchar *value);
+void e_cal_backend_store_thaw_changes (ECalBackendStore *store);
+void e_cal_backend_store_freeze_changes (ECalBackendStore *store);
G_END_DECLS
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]