evolution-3.6.4/modules/mail-config/e-mail-config-sendmail-backend.c

No issues found

Incomplete coverage

Tool Failure ID Location Function Message Data
clang-analyzer no-output-found e-mail-config-sendmail-backend.c Message(text='Unable to locate XML output from invoke-clang-analyzer') None
clang-analyzer no-output-found e-mail-config-sendmail-backend.c Message(text='Unable to locate XML output from invoke-clang-analyzer') None
Failure running clang-analyzer ('no-output-found')
Message
Unable to locate XML output from invoke-clang-analyzer
Failure running clang-analyzer ('no-output-found')
Message
Unable to locate XML output from invoke-clang-analyzer
 1 /*
 2  * e-mail-config-sendmail-backend.c
 3  *
 4  * This program is free software; you can redistribute it and/or
 5  * modify it under the terms of the GNU Lesser General Public
 6  * License as published by the Free Software Foundation; either
 7  * version 2 of the License, or (at your option) version 3.
 8  *
 9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with the program; if not, see <http://www.gnu.org/licenses/>
16  *
17  */
18 
19 #include "e-mail-config-sendmail-backend.h"
20 
21 G_DEFINE_DYNAMIC_TYPE (
22 	EMailConfigSendmailBackend,
23 	e_mail_config_sendmail_backend,
24 	E_TYPE_MAIL_CONFIG_SERVICE_BACKEND)
25 
26 static void
27 e_mail_config_sendmail_backend_class_init (EMailConfigSendmailBackendClass *class)
28 {
29 	EMailConfigServiceBackendClass *backend_class;
30 
31 	backend_class = E_MAIL_CONFIG_SERVICE_BACKEND_CLASS (class);
32 	backend_class->backend_name = "sendmail";
33 
34 	/* No extra widgets for this backend. */
35 }
36 
37 static void
38 e_mail_config_sendmail_backend_class_finalize (EMailConfigSendmailBackendClass *class)
39 {
40 }
41 
42 static void
43 e_mail_config_sendmail_backend_init (EMailConfigSendmailBackend *backend)
44 {
45 }
46 
47 void
48 e_mail_config_sendmail_backend_type_register (GTypeModule *type_module)
49 {
50 	/* XXX G_DEFINE_DYNAMIC_TYPE declares a static type registration
51 	 *     function, so we have to wrap it with a public function in
52 	 *     order to register types from a separate compilation unit. */
53 	e_mail_config_sendmail_backend_register_type (type_module);
54 }