diff options
author | rbuj <[email protected]> | 2020-12-31 18:58:03 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-01-28 21:14:30 +0100 |
commit | d9f4cc876d523560f97156ceda1905ee34ffdaae (patch) | |
tree | 6e05dff31883a7272de155b26f4d8d2524ac4ccc /sendto/caja-sendto-module.c | |
parent | c6dba2ce2ec09f2c6202fd1a22f1b5ae89532f50 (diff) | |
download | caja-extensions-d9f4cc876d523560f97156ceda1905ee34ffdaae.tar.bz2 caja-extensions-d9f4cc876d523560f97156ceda1905ee34ffdaae.tar.xz |
Include i18n header after defining GETTEXT_PACKAGE macro
Diffstat (limited to 'sendto/caja-sendto-module.c')
-rw-r--r-- | sendto/caja-sendto-module.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sendto/caja-sendto-module.c b/sendto/caja-sendto-module.c index 5c8c13b..af0fd0f 100644 --- a/sendto/caja-sendto-module.c +++ b/sendto/caja-sendto-module.c @@ -21,12 +21,16 @@ * */ +#ifdef HAVE_CONFIG_H #include <config.h> +#endif + +#include <glib/gi18n-lib.h> + #include <libcaja-extension/caja-extension-types.h> #include <libcaja-extension/caja-column-provider.h> -#include <glib/gi18n-lib.h> -#include "caja-nste.h" +#include "caja-nste.h" void caja_module_initialize (GTypeModule*module) @@ -38,14 +42,12 @@ caja_module_initialize (GTypeModule*module) bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); } - void caja_module_shutdown (void) { g_print ("Shutting down caja-sendto extension\n"); } - void caja_module_list_types (const GType **types, int *num_types) @@ -57,6 +59,3 @@ caja_module_list_types (const GType **types, *num_types = 1; } - - - |