talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit e7e49fb9acbbc42688ad331175138dd1a4b36a89
parent f64d3959689ea365a0e48328c783da8c7ae0cad4
Author: Michael Rasmussen <mir@datanom.net>
Date:   Sun, 30 Dec 2018 16:17:51 +0100

Remove mysterious chars and replace with correct tab chars

Signed-off-by: Michael Rasmussen <mir@datanom.net>

Diffstat:
Msrc/addressbook-dbus.h | 28++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/src/addressbook-dbus.h b/src/addressbook-dbus.h @@ -42,30 +42,30 @@ G_BEGIN_DECLS #include "compose.h" typedef struct { - gchar* cn; - gchar* email; - gchar* remarks; - gchar* name; - gchar* book; - GdkPixbuf* picture; + gchar* cn; + gchar* email; + gchar* remarks; + gchar* name; + gchar* book; + GdkPixbuf* picture; } ContactData; gboolean addressbook_start_service(GError** error); void addressbook_install_hooks(GError** error); int addressbook_dbus_add_contact(ContactData* contact, GError** error); gboolean addrindex_dbus_load_completion(gint (*callBackFunc) - (const gchar* name, - const gchar* address, - const gchar* nick, - const gchar* alias, - GList* grp_emails), - GError** error); + (const gchar* name, + const gchar* address, + const gchar* nick, + const gchar* alias, + GList* grp_emails), + GError** error); void addressbook_dbus_open(gboolean compose, GError** error); GSList* addressbook_dbus_get_books(GError** error); void contact_data_free(ContactData** data); void addressbook_harvest(FolderItem *folderItem, - gboolean sourceInd, - GList *msgList ); + gboolean sourceInd, + GList *msgList ); void addressbook_connect_signals(Compose* compose); gchar* addressbook_get_vcard(const gchar* account, GError** error); gboolean addressbook_add_vcard(const gchar* abook, const gchar* vcard, GError** error);