diff options
author | Guido Günther <agx@sigxcpu.org> | 2011-02-14 21:00:53 +0100 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2011-02-14 21:00:53 +0100 |
commit | c646d52761bf59f014b9c385d15309880cc5309c (patch) | |
tree | 7bb2fa05f721ca1d6263c9b33c3a8e1488d902fd /cc-panel/ka-module.c | |
parent | New upstream version 0.17 (diff) | |
download | krb5-auth-dialog-c646d52761bf59f014b9c385d15309880cc5309c.tar.gz krb5-auth-dialog-c646d52761bf59f014b9c385d15309880cc5309c.tar.bz2 krb5-auth-dialog-c646d52761bf59f014b9c385d15309880cc5309c.zip |
New upstream version 2.91.6
Diffstat (limited to 'cc-panel/ka-module.c')
-rw-r--r-- | cc-panel/ka-module.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/cc-panel/ka-module.c b/cc-panel/ka-module.c new file mode 100644 index 0000000..17ab5bd --- /dev/null +++ b/cc-panel/ka-module.c @@ -0,0 +1,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) +{ +} |