~ubuntu-branches/ubuntu/wily/evolution-data-server/wily

« back to all changes in this revision

Viewing changes to libedataserver/e-categories.h

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2015-07-20 13:34:59 UTC
  • mfrom: (1.1.126) (1.2.48 sid)
  • Revision ID: package-import@ubuntu.com-20150720133459-g6y46hnu5ewtoz08
Tags: 3.16.4-0ubuntu2
debian/patches/0001-Bug-752373-Monthly-events-do-not-recur-correctly.patch:
Cherry-pick patch from upstream to fix events not recurring correctly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*
3
3
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
4
4
 *
5
 
 * This library is free software; you can redistribute it and/or modify it
 
5
 * This library is free software: you can redistribute it and/or modify it
6
6
 * under the terms of the GNU Lesser General Public License as published by
7
7
 * the Free Software Foundation.
8
8
 *
9
9
 * This library is distributed in the hope that it will be useful, but
10
10
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11
 
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
11
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
12
12
 * for more details.
13
13
 *
14
14
 * You should have received a copy of the GNU Lesser General Public License
15
 
 * along with this library; if not, see <http://www.gnu.org/licenses/>.
 
15
 * along with this library. If not, see <http://www.gnu.org/licenses/>.
 
16
 *
16
17
 */
17
18
 
18
19
#if !defined (__LIBEDATASERVER_H_INSIDE__) && !defined (LIBEDATASERVER_COMPILATION)
26
27
 
27
28
G_BEGIN_DECLS
28
29
 
 
30
G_DEPRECATED_FOR (e_categories_dup_list)
29
31
GList *         e_categories_get_list           (void);
30
32
 
 
33
GList *         e_categories_dup_list           (void);
 
34
 
31
35
/* 'unused' parameter was 'color', but it is deprecated now (see bug #308815) */
32
36
void            e_categories_add                (const gchar *category,
33
37
                                                 const gchar *unused,
35
39
                                                 gboolean searchable);
36
40
void            e_categories_remove             (const gchar *category);
37
41
gboolean        e_categories_exist              (const gchar *category);
 
42
G_DEPRECATED_FOR (e_categories_dup_icon_file_for)
38
43
const gchar *   e_categories_get_icon_file_for  (const gchar *category);
 
44
gchar *         e_categories_dup_icon_file_for  (const gchar *category);
39
45
void            e_categories_set_icon_file_for  (const gchar *category,
40
46
                                                 const gchar *icon_file);
41
47
gboolean        e_categories_is_searchable      (const gchar *category);