No issues found
Tool | Failure ID | Location | Function | Message | Data |
---|---|---|---|---|---|
clang-analyzer | no-output-found | e-book-shell-migrate.c | Message(text='Unable to locate XML output from invoke-clang-analyzer') | None | |
clang-analyzer | no-output-found | e-book-shell-migrate.c | Message(text='Unable to locate XML output from invoke-clang-analyzer') | None |
1 /*
2 * e-book-shell-backend-migrate.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 * Authors:
19 * Chris Toshok <toshok@ximian.com>
20 *
21 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
22 *
23 */
24
25 #ifdef HAVE_CONFIG_H
26 #include <config.h>
27 #endif
28
29 #include "e-book-shell-migrate.h"
30
31 gboolean
32 e_book_shell_backend_migrate (EShellBackend *shell_backend,
33 gint major,
34 gint minor,
35 gint micro,
36 GError **error)
37 {
38 g_return_val_if_fail (E_IS_SHELL_BACKEND (shell_backend), FALSE);
39
40 return TRUE;
41 }