diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-03-06 22:39:30 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-06 22:39:30 +0800 |
commit | a0c1a491f146e480589496c0714a9be6857d2c26 (patch) | |
tree | 535af3bac6eac9d68762bae60b1ee8c46b2fce68 /camel/camel-vee-store.c | |
parent | 9b665c1a82813d17deb3c50d357bc60f13d041dc (diff) | |
download | gsoc2013-evolution-a0c1a491f146e480589496c0714a9be6857d2c26.tar.gz gsoc2013-evolution-a0c1a491f146e480589496c0714a9be6857d2c26.tar.zst gsoc2013-evolution-a0c1a491f146e480589496c0714a9be6857d2c26.zip |
Fixes for bug #39168
2003-03-06 Jeffrey Stedfast <fejj@ximian.com>
Fixes for bug #39168
* providers/local/camel-spool-summary.c: Get rid of the empty
private struct.
* providers/local/camel-mbox-summary.c: Get rid of the empty
private struct.
* camel-vee-store.c: Get rid of the empty private struct.
* camel-mime-filter-from.c: Get rid of the empty private struct.
2003-03-05 Jeffrey Stedfast <fejj@ximian.com>
* providers/sendmail/camel-sendmail-transport.c
(sendmail_send_to): Add a CRLF filter to the output stream to
convert any CRLF sequences into plain old line-feeds to work
around a bug in some local transport programs.
svn path=/trunk/; revision=20187
Diffstat (limited to 'camel/camel-vee-store.c')
-rw-r--r-- | camel/camel-vee-store.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/camel/camel-vee-store.c b/camel/camel-vee-store.c index 9531d49fc0..46cbd45415 100644 --- a/camel/camel-vee-store.c +++ b/camel/camel-vee-store.c @@ -40,11 +40,6 @@ static CamelFolder *vee_get_trash (CamelStore *store, CamelException *ex); static CamelFolderInfo *vee_get_folder_info(CamelStore *store, const char *top, guint32 flags, CamelException *ex); -struct _CamelVeeStorePrivate { -}; - -#define _PRIVATE(o) (((CamelVeeStore *)(o))->priv) - static void camel_vee_store_class_init (CamelVeeStoreClass *klass); static void camel_vee_store_init (CamelVeeStore *obj); static void camel_vee_store_finalise (CamelObject *obj); @@ -90,21 +85,16 @@ camel_vee_store_class_init (CamelVeeStoreClass *klass) static void camel_vee_store_init (CamelVeeStore *obj) { - struct _CamelVeeStorePrivate *p; CamelStore *store = (CamelStore *)obj; /* we dont want a vtrash on this one */ store->flags &= ~(CAMEL_STORE_VTRASH); - - p = _PRIVATE(obj) = g_malloc0(sizeof(*p)); } static void camel_vee_store_finalise (CamelObject *obj) { - CamelVeeStore *vs = (CamelVeeStore *)obj; - - g_free(vs->priv); + ; } /** |