aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-from.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-03-06 22:39:30 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-03-06 22:39:30 +0800
commita0c1a491f146e480589496c0714a9be6857d2c26 (patch)
tree535af3bac6eac9d68762bae60b1ee8c46b2fce68 /camel/camel-mime-filter-from.c
parent9b665c1a82813d17deb3c50d357bc60f13d041dc (diff)
downloadgsoc2013-evolution-a0c1a491f146e480589496c0714a9be6857d2c26.tar
gsoc2013-evolution-a0c1a491f146e480589496c0714a9be6857d2c26.tar.gz
gsoc2013-evolution-a0c1a491f146e480589496c0714a9be6857d2c26.tar.bz2
gsoc2013-evolution-a0c1a491f146e480589496c0714a9be6857d2c26.tar.lz
gsoc2013-evolution-a0c1a491f146e480589496c0714a9be6857d2c26.tar.xz
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-mime-filter-from.c')
-rw-r--r--camel/camel-mime-filter-from.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/camel/camel-mime-filter-from.c b/camel/camel-mime-filter-from.c
index fb2029f909..092f4d3904 100644
--- a/camel/camel-mime-filter-from.c
+++ b/camel/camel-mime-filter-from.c
@@ -19,16 +19,16 @@
* Boston, MA 02111-1307, USA.
*/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <string.h>
#include "camel-mime-filter-from.h"
#define d(x)
-struct _CamelMimeFilterFromPrivate {
-};
-
-#define _PRIVATE(o) (((CamelMimeFilterFrom *)(o))->priv)
-
static void camel_mime_filter_from_class_init (CamelMimeFilterFromClass *klass);
static void camel_mime_filter_from_init (CamelMimeFilterFrom *obj);
@@ -165,10 +165,7 @@ camel_mime_filter_from_class_init (CamelMimeFilterFromClass *klass)
static void
camel_mime_filter_from_init (CamelMimeFilterFrom *obj)
{
- struct _CamelMimeFilterFromPrivate *p;
-
- p = _PRIVATE(obj) = g_malloc0(sizeof(*p));
- obj->midline = FALSE;
+ ;
}
/**