blob: 17ab5bdeafad2cfbb079b0a6faf577dd4c14f4f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <config.h>
#include "cc-ka-panel.h"
#include <glib/gi18n.h>
void
g_io_module_load (GIOModule *module)
{
bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR);
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
/* register the panel */
cc_ka_panel_register (module);
}
void
g_io_module_unload (GIOModule *module G_GNUC_UNUSED)
{
}
|