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/plugins/removable-devices | |
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/plugins/removable-devices')
-rw-r--r-- | sendto/plugins/removable-devices/removable-devices.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sendto/plugins/removable-devices/removable-devices.c b/sendto/plugins/removable-devices/removable-devices.c index 191c2a7..f64b17c 100644 --- a/sendto/plugins/removable-devices/removable-devices.c +++ b/sendto/plugins/removable-devices/removable-devices.c @@ -19,10 +19,13 @@ * Bastien Nocera <[email protected]> */ +#ifdef HAVE_CONFIG_H #include <config.h> +#endif -#include <string.h> #include <glib/gi18n-lib.h> + +#include <string.h> #include <gio/gio.h> #include "nst-common.h" #include "caja-sendto-plugin.h" @@ -257,4 +260,3 @@ NstPluginInfo plugin_info = { }; NST_INIT_PLUGIN (plugin_info) - |