~ubuntu-branches/ubuntu/saucy/parole/saucy

« back to all changes in this revision

Viewing changes to src/plugins/notify/notify-plugin.c

  • Committer: Package Import Robot
  • Author(s): Lionel Le Folgoc
  • Date: 2013-01-09 19:08:53 UTC
  • mfrom: (3.1.3 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20130109190853-zeh9ksa0ijwzgmrs
Tags: 0.4.0-0ubuntu1
* New upstream release.
* debian/control:
  - add b-dep on libxfconf-0-dev since parole now uses Xfconf
  - suggests gnome-codec-install for the missing codec feature.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * * Copyright (C) 2012 Sean Davis <smd.seandavis@gmail.com>
 
3
 *
 
4
 * Licensed under the GNU General Public License Version 2
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program 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
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
#ifdef HAVE_CONFIG_H
 
22
#include <config.h>
 
23
#endif
 
24
 
 
25
#include <libxfce4util/libxfce4util.h>
 
26
 
 
27
#include "notify-provider.h"
 
28
 
 
29
G_MODULE_EXPORT GType   parole_plugin_initialize (ParoleProviderPlugin *plugin);
 
30
                                                  
 
31
G_MODULE_EXPORT void    parole_plugin_shutdown   (void);
 
32
 
 
33
G_MODULE_EXPORT GType
 
34
parole_plugin_initialize (ParoleProviderPlugin *plugin)
 
35
{
 
36
    xfce_textdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR, "UTF-8");
 
37
    
 
38
    notify_provider_register_type (plugin);
 
39
    
 
40
    return NOTIFY_TYPE_PROVIDER;
 
41
}
 
42
 
 
43
G_MODULE_EXPORT void
 
44
parole_plugin_shutdown (void)
 
45
{
 
46
    
 
47
}