~ubuntu-desktop/indicator-messages/ubuntu

« back to all changes in this revision

Viewing changes to src/gsettingsstrv.h

  • Committer: Sebastien Bacher
  • Date: 2012-08-23 11:28:52 UTC
  • mfrom: (68.46.24)
  • Revision ID: seb128@ubuntu.com-20120823112852-elvo1ed9ntwmtqhy
* New upstream version
* debian/control:
  - set some conflicts on the old deprecated status provider binaries
  - updated Build-Depends
* debian/control, debian/*.install:
  - drop indicator-status-provider-*, those are deprecated
  - new binaries for the libmessaging-menu library
* debian/libmessaging-menu0.symbols:
  - symbol file for the new library
* Updated packaging to dh9, current standards

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2012 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 *     Lars Uebernickel <lars.uebernickel@canonical.com>
 
18
 */
 
19
 
 
20
#ifndef __G_SETTINGS_STRV_H__
 
21
#define __G_SETTINGS_STRV_H__
 
22
 
 
23
#include <gio/gio.h>
 
24
 
 
25
gboolean        g_settings_strv_append_unique   (GSettings   *settings,
 
26
                                                 const gchar *key,
 
27
                                                 const gchar *item);
 
28
 
 
29
void            g_settings_strv_remove          (GSettings   *settings,
 
30
                                                 const gchar *key,
 
31
                                                 const gchar *item);
 
32
 
 
33
#endif