aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-19 00:27:50 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-19 00:30:22 +0800
commitffcf3c1bbbea97c2109a478d8d5c7069b4ed3880 (patch)
treeef44ff2f9cd87e3c0cfac46a846dd927d5c8ca85
parent6fd82c722835c88e292b206451fda824166f37c0 (diff)
downloadgsoc2013-evolution-ffcf3c1bbbea97c2109a478d8d5c7069b4ed3880.tar
gsoc2013-evolution-ffcf3c1bbbea97c2109a478d8d5c7069b4ed3880.tar.gz
gsoc2013-evolution-ffcf3c1bbbea97c2109a478d8d5c7069b4ed3880.tar.bz2
gsoc2013-evolution-ffcf3c1bbbea97c2109a478d8d5c7069b4ed3880.tar.lz
gsoc2013-evolution-ffcf3c1bbbea97c2109a478d8d5c7069b4ed3880.tar.xz
gsoc2013-evolution-ffcf3c1bbbea97c2109a478d8d5c7069b4ed3880.tar.zst
gsoc2013-evolution-ffcf3c1bbbea97c2109a478d8d5c7069b4ed3880.zip
Remove unused ETableMemoryStoreCustomColumn.
-rw-r--r--doc/reference/evolution-util/evolution-util-sections.txt1
-rw-r--r--e-util/e-table-memory-store.h15
2 files changed, 3 insertions, 13 deletions
diff --git a/doc/reference/evolution-util/evolution-util-sections.txt b/doc/reference/evolution-util/evolution-util-sections.txt
index c2c6aa0b73..9d76d52d48 100644
--- a/doc/reference/evolution-util/evolution-util-sections.txt
+++ b/doc/reference/evolution-util/evolution-util-sections.txt
@@ -3725,7 +3725,6 @@ e_table_memory_callbacks_get_type
<TITLE>ETableMemoryStore</TITLE>
ETableMemoryStore
ETableMemoryStoreColumnType
-ETableMemoryStoreCustomColumn
ETableMemoryStoreColumnInfo
E_TABLE_MEMORY_STORE_TERMINATOR
E_TABLE_MEMORY_STORE_INTEGER
diff --git a/e-util/e-table-memory-store.h b/e-util/e-table-memory-store.h
index d3b95409f7..2af2b60360 100644
--- a/e-util/e-table-memory-store.h
+++ b/e-util/e-table-memory-store.h
@@ -60,25 +60,16 @@ typedef enum {
} ETableMemoryStoreColumnType;
typedef struct {
- ETableMemoryCallbacksDuplicateValueFn duplicate_value;
- ETableMemoryCallbacksFreeValueFn free_value;
- ETableMemoryCallbacksInitializeValueFn initialize_value;
- ETableMemoryCallbacksValueIsEmptyFn value_is_empty;
- ETableMemoryCallbacksValueToStringFn value_to_string;
-} ETableMemoryStoreCustomColumn;
-
-typedef struct {
ETableMemoryStoreColumnType type;
- ETableMemoryStoreCustomColumn custom;
guint editable : 1;
} ETableMemoryStoreColumnInfo;
#define E_TABLE_MEMORY_STORE_TERMINATOR \
- { E_TABLE_MEMORY_STORE_COLUMN_TYPE_TERMINATOR, { NULL }, FALSE }
+ { E_TABLE_MEMORY_STORE_COLUMN_TYPE_TERMINATOR, FALSE }
#define E_TABLE_MEMORY_STORE_INTEGER \
- { E_TABLE_MEMORY_STORE_COLUMN_TYPE_INTEGER, { NULL }, FALSE }
+ { E_TABLE_MEMORY_STORE_COLUMN_TYPE_INTEGER, FALSE }
#define E_TABLE_MEMORY_STORE_STRING \
- { E_TABLE_MEMORY_STORE_COLUMN_TYPE_STRING, { NULL }, FALSE }
+ { E_TABLE_MEMORY_STORE_COLUMN_TYPE_STRING, FALSE }
typedef struct _ETableMemoryStore ETableMemoryStore;
typedef struct _ETableMemoryStoreClass ETableMemoryStoreClass;