From 9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Wed, 14 Nov 2007 22:04:21 +0000 Subject: ** Remove trailing whitespace from source code. 2007-11-14 Matthew Barnes ** Remove trailing whitespace from source code. svn path=/trunk/; revision=34537 --- mail/importers/elm-importer.c | 10 +++++----- mail/importers/evolution-mbox-importer.c | 4 ++-- mail/importers/mail-importer.c | 26 +++++++++++++------------- mail/importers/pine-importer.c | 16 ++++++++-------- 4 files changed, 28 insertions(+), 28 deletions(-) (limited to 'mail/importers') diff --git a/mail/importers/elm-importer.c b/mail/importers/elm-importer.c index 35fd28c5b5..1fafedc0a2 100644 --- a/mail/importers/elm-importer.c +++ b/mail/importers/elm-importer.c @@ -1,20 +1,20 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* elm-importer.c - * + * * Authors: Iain Holmes * Michael Zucchi * * Copyright 2001 Ximian, Inc. (www.ximian.com) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public + * This program is free software; you can redistribute it and/or + * modify it under the terms of version 2 of the GNU General Public * License as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 @@ -303,7 +303,7 @@ mail_importer_elm_import(EImport *ei, EImportTarget *target) m->status = camel_operation_new(elm_status, m); id = m->msg.seq; - + e_thread_put(mail_thread_queued, (EMsg *)m); return id; diff --git a/mail/importers/evolution-mbox-importer.c b/mail/importers/evolution-mbox-importer.c index b12ecca3a2..1ad64b91e3 100644 --- a/mail/importers/evolution-mbox-importer.c +++ b/mail/importers/evolution-mbox-importer.c @@ -77,7 +77,7 @@ static GtkWidget * mbox_getwidget(EImport *ei, EImportTarget *target, EImportImporter *im) { GtkWidget *hbox, *w; - + hbox = gtk_hbox_new(FALSE, 0); w = gtk_label_new(_("Destination folder:")); @@ -124,7 +124,7 @@ mbox_supported(EImport *ei, EImportTarget *target, EImportImporter *im) close(fd); } - return ret; + return ret; } static void diff --git a/mail/importers/mail-importer.c b/mail/importers/mail-importer.c index 4e36ebd7fa..5905080735 100644 --- a/mail/importers/mail-importer.c +++ b/mail/importers/mail-importer.c @@ -56,10 +56,10 @@ /** * mail_importer_make_local_folder: - * @folderpath: - * + * @folderpath: + * * Check a local folder exists at path @folderpath, and if not, create it. - * + * * Return value: The physical uri of the folder, or NULL if the folder did * not exist and could not be created. **/ @@ -86,12 +86,12 @@ mail_importer_add_line (MailImporter *importer, CamelMimeMessage *msg; CamelMessageInfo *info; CamelException *ex; - + if (importer->mstream == NULL) importer->mstream = CAMEL_STREAM_MEM (camel_stream_mem_new ()); camel_stream_write (CAMEL_STREAM (importer->mstream), str, strlen (str)); - + if (finished == FALSE) return; @@ -102,7 +102,7 @@ mail_importer_add_line (MailImporter *importer, msg = camel_mime_message_new (); camel_data_wrapper_construct_from_stream (CAMEL_DATA_WRAPPER (msg), CAMEL_STREAM (importer->mstream)); - + camel_object_unref (importer->mstream); importer->mstream = NULL; @@ -133,7 +133,7 @@ struct _BonoboObject *mail_importer_factory_cb(struct _BonoboGenericFactory *fac struct _import_mbox_msg { struct _mail_msg msg; - + char *path; char *uri; CamelOperation *cancel; @@ -298,7 +298,7 @@ static void import_mbox_free (struct _mail_msg *mm) { struct _import_mbox_msg *m = (struct _import_mbox_msg *)mm; - + if (m->cancel) camel_operation_unref(m->cancel); g_free(m->uri); @@ -436,11 +436,11 @@ import_folders_rec(struct _import_folders_data *m, const char *filepath, const c /** * mail_importer_import_folders_sync: - * @filepath: - * @: - * @flags: - * @cancel: - * + * @filepath: + * @: + * @flags: + * @cancel: + * * import from a base path @filepath into the root local folder tree, * scanning all sub-folders. * diff --git a/mail/importers/pine-importer.c b/mail/importers/pine-importer.c index 4487d51f0e..97f3349e66 100644 --- a/mail/importers/pine-importer.c +++ b/mail/importers/pine-importer.c @@ -1,22 +1,22 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* pine-importer.c - * - * Authors: + * + * Authors: * Iain Holmes * Michael Zucchi * * Copyright 2001 Ximian, Inc. (www.ximian.com) * Copyright 2004 Novell, Inc. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public + * This program is free software; you can redistribute it and/or + * modify it under the terms of version 2 of the GNU General Public * License as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 @@ -177,7 +177,7 @@ import_contacts(void) printf("importing pine addressbook\n"); if (!e_book_get_addressbooks(&source_list, NULL)) - return; + return; name = g_build_filename(g_get_home_dir(), ".addressbook", NULL); fp = fopen(name, "r"); @@ -192,7 +192,7 @@ import_contacts(void) g_warning ("Could not create EBook."); return; } - + e_book_open(book, TRUE, NULL); g_object_unref(primary); g_object_unref(source_list); @@ -349,7 +349,7 @@ mail_importer_pine_import(EImport *ei, EImportTarget *target) m->status = camel_operation_new(pine_status, m); id = m->msg.seq; - + e_thread_put(mail_thread_queued, (EMsg *)m); return id; -- cgit v1.2.3