diff options
author | Pablo Barciela <[email protected]> | 2019-04-07 21:47:17 +0200 |
---|---|---|
committer | lukefromdc <[email protected]> | 2019-04-10 21:52:58 +0000 |
commit | e50549cf502f988ff214a2714a8cdd6fb6892244 (patch) | |
tree | b4e48933d8725a0c7ee5ad5c20131d822b1b87ff /src/caja-main.c | |
parent | 7c290c6bb60c65b3b0a336d0595490f9e0f7b3f2 (diff) | |
download | caja-e50549cf502f988ff214a2714a8cdd6fb6892244.tar.bz2 caja-e50549cf502f988ff214a2714a8cdd6fb6892244.tar.xz |
local #include files inside "" instead <>
Diffstat (limited to 'src/caja-main.c')
-rw-r--r-- | src/caja-main.c | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/src/caja-main.c b/src/caja-main.c index a6e296ff..10914246 100644 --- a/src/caja-main.c +++ b/src/caja-main.c @@ -28,35 +28,38 @@ /* caja-main.c: Implementation of the routines that drive program lifecycle and main window creation/destruction. */ #include <config.h> -#include "caja-window.h" #include <dlfcn.h> #include <signal.h> -#include <eel/eel-debug.h> -#include <eel/eel-glib-extensions.h> -#include <eel/eel-self-checks.h> -#include <libegg/eggdesktopfile.h> -#include <gdk/gdkx.h> -#include <gtk/gtk.h> -#include <glib/gi18n.h> -#include <gio/gdesktopappinfo.h> -#include <libcaja-private/caja-debug-log.h> -#include <libcaja-private/caja-global-preferences.h> -#include <libcaja-private/caja-icon-names.h> -#include <libxml/parser.h> #ifdef HAVE_LOCALE_H - #include <locale.h> +#include <locale.h> #endif #ifdef HAVE_MALLOC_H - #include <malloc.h> +#include <malloc.h> #endif #include <stdlib.h> #include <string.h> #include <unistd.h> +#include <gdk/gdkx.h> +#include <gtk/gtk.h> +#include <glib/gi18n.h> +#include <gio/gdesktopappinfo.h> +#include <libxml/parser.h> #ifdef HAVE_EXEMPI - #include <exempi/xmp.h> +#include <exempi/xmp.h> #endif +#include "../eel/eel-debug.h" +#include "../eel/eel-glib-extensions.h" +#include "../eel/eel-self-checks.h" + +#include "../libcaja-private/caja-debug-log.h" +#include "../libcaja-private/caja-global-preferences.h" +#include "../libcaja-private/caja-icon-names.h" + +#include "../libegg/eggdesktopfile.h" + +#include "caja-window.h" static void dump_debug_log (void) { |