evolution-3.6.4/modules/calendar/evolution-module-calendar.c

No issues found

Incomplete coverage

Tool Failure ID Location Function Message Data
clang-analyzer no-output-found evolution-module-calendar.c Message(text='Unable to locate XML output from invoke-clang-analyzer') None
clang-analyzer no-output-found evolution-module-calendar.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  * evolution-module-calendar.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  * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
19  *
20  */
21 
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25 
26 #include "e-cal-attachment-handler.h"
27 
28 #include "e-cal-config-hook.h"
29 #include "e-cal-event-hook.h"
30 
31 #include "e-cal-shell-backend.h"
32 #include "e-cal-shell-content.h"
33 #include "e-cal-shell-sidebar.h"
34 #include "e-cal-shell-view.h"
35 
36 #include "e-memo-shell-backend.h"
37 #include "e-memo-shell-content.h"
38 #include "e-memo-shell-sidebar.h"
39 #include "e-memo-shell-view.h"
40 
41 #include "e-task-shell-backend.h"
42 #include "e-task-shell-content.h"
43 #include "e-task-shell-sidebar.h"
44 #include "e-task-shell-view.h"
45 
46 #include "e-cal-config-calendar-item.h"
47 #include "e-cal-config-comp-editor.h"
48 #include "e-cal-config-date-edit.h"
49 #include "e-cal-config-meeting-store.h"
50 #include "e-cal-config-meeting-time-selector.h"
51 #include "e-cal-config-model.h"
52 #include "e-cal-config-view.h"
53 
54 #include "e-calendar-preferences.h"
55 
56 /* Module Entry Points */
57 void e_module_load (GTypeModule *type_module);
58 void e_module_unload (GTypeModule *type_module);
59 
60 G_MODULE_EXPORT void
61 e_module_load (GTypeModule *type_module)
62 {
63 	/* Register dynamically loaded types. */
64 
65 	e_cal_attachment_handler_register_type (type_module);
66 
67 	e_cal_config_hook_register_type (type_module);
68 	e_cal_event_hook_register_type (type_module);
69 
70 	e_cal_shell_backend_type_register (type_module);
71 	e_cal_shell_content_type_register (type_module);
72 	e_cal_shell_sidebar_type_register (type_module);
73 	e_cal_shell_view_register_type (type_module);
74 
75 	e_memo_shell_backend_type_register (type_module);
76 	e_memo_shell_content_type_register (type_module);
77 	e_memo_shell_sidebar_type_register (type_module);
78 	e_memo_shell_view_register_type (type_module);
79 
80 	e_task_shell_backend_type_register (type_module);
81 	e_task_shell_content_type_register (type_module);
82 	e_task_shell_sidebar_type_register (type_module);
83 	e_task_shell_view_register_type (type_module);
84 
85 	e_cal_config_calendar_item_type_register (type_module);
86 	e_cal_config_comp_editor_type_register (type_module);
87 	e_cal_config_date_edit_type_register (type_module);
88 	e_cal_config_meeting_store_type_register (type_module);
89 	e_cal_config_meeting_time_selector_type_register (type_module);
90 	e_cal_config_model_type_register (type_module);
91 	e_cal_config_view_type_register (type_module);
92 
93 	e_calendar_preferences_type_register (type_module);
94 }
95 
96 G_MODULE_EXPORT void
97 e_module_unload (GTypeModule *type_module)
98 {
99 }