No issues found
Tool | Failure ID | Location | Function | Message | Data |
---|---|---|---|---|---|
clang-analyzer | no-output-found | nautilus-sendto-module.c | Message(text='Unable to locate XML output from invoke-clang-analyzer') | None |
1 /*
2 * Nautilus SendTo
3 *
4 * Copyright (C) 2005 Roberto Majadas
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public
17 * License along with this library; if not, write to the Free
18 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 * Author: Roberto Majadas <roberto.majadas@openshine.com>
21 *
22 */
23
24 #include <config.h>
25 #include <libnautilus-extension/nautilus-extension-types.h>
26 #include <libnautilus-extension/nautilus-column-provider.h>
27 #include <glib/gi18n-lib.h>
28 #include "nautilus-nste.h"
29
30
31 void
32 nautilus_module_initialize (GTypeModule*module)
33 {
34 nautilus_nste_register_type (module);
35
36 bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
37 bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
38 }
39
40 void
41 nautilus_module_shutdown (void)
42 {
43 }
44
45 void
46 nautilus_module_list_types (const GType **types,
47 int *num_types)
48 {
49 static GType type_list[1];
50
51 type_list[0] = NAUTILUS_TYPE_NSTE;
52 *types = type_list;
53
54 *num_types = 1;
55 }