diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-06-19 00:27:50 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-06-19 00:30:22 +0800 |
commit | ffcf3c1bbbea97c2109a478d8d5c7069b4ed3880 (patch) | |
tree | ef44ff2f9cd87e3c0cfac46a846dd927d5c8ca85 /e-util | |
parent | 6fd82c722835c88e292b206451fda824166f37c0 (diff) | |
download | gsoc2013-evolution-ffcf3c1bbbea97c2109a478d8d5c7069b4ed3880.tar.gz gsoc2013-evolution-ffcf3c1bbbea97c2109a478d8d5c7069b4ed3880.tar.zst gsoc2013-evolution-ffcf3c1bbbea97c2109a478d8d5c7069b4ed3880.zip |
Remove unused ETableMemoryStoreCustomColumn.
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-table-memory-store.h | 15 |
1 files changed, 3 insertions, 12 deletions
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; |