diff options
author | Laurent Napias <[email protected]> | 2019-06-29 12:06:39 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-06-30 17:55:06 +0200 |
commit | cf3fd47515e2950da24c0f6eb1be96a3b520fab4 (patch) | |
tree | ee67462cd5992c59a362c6c3be7083a08524f77c /sendto/plugins/emailclient | |
parent | 363093d7d32d5f60f66d2ca7f9193dd684c2ccd1 (diff) | |
download | caja-extensions-cf3fd47515e2950da24c0f6eb1be96a3b520fab4.tar.bz2 caja-extensions-cf3fd47515e2950da24c0f6eb1be96a3b520fab4.tar.xz |
Remove trailing whitespaces
Diffstat (limited to 'sendto/plugins/emailclient')
-rw-r--r-- | sendto/plugins/emailclient/emailclient.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sendto/plugins/emailclient/emailclient.c b/sendto/plugins/emailclient/emailclient.c index 14cb998..9d1e369 100644 --- a/sendto/plugins/emailclient/emailclient.c +++ b/sendto/plugins/emailclient/emailclient.c @@ -1,9 +1,9 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* +/* * Copyright (C) 2004 Roberto Majadas <[email protected]> * Copyright (C) 2012 Stefano Karapetsas <[email protected]> - * + * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the @@ -56,7 +56,7 @@ get_evo_cmd (void) NULL}; guint i; - + for (i = 0; cmds[i] != NULL; i++) { tmp = g_find_program_in_path (cmds[i]); if (tmp != NULL) @@ -77,7 +77,7 @@ init (NstPlugin *plugin) GAppInfo *app_info = NULL; g_print ("Init email client plugin\n"); - + bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); @@ -249,14 +249,14 @@ send_files (NstPlugin *plugin, return TRUE; } -static +static gboolean destroy (NstPlugin *plugin){ g_free (mail_cmd); mail_cmd = NULL; return TRUE; } -static +static NstPluginInfo plugin_info = { "emblem-mail", "emailclient", @@ -268,7 +268,7 @@ NstPluginInfo plugin_info = { NULL, send_files, destroy -}; +}; NST_INIT_PLUGIN (plugin_info) |