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-location-entry.c | |
parent | 7c290c6bb60c65b3b0a336d0595490f9e0f7b3f2 (diff) | |
download | caja-e50549cf502f988ff214a2714a8cdd6fb6892244.tar.bz2 caja-e50549cf502f988ff214a2714a8cdd6fb6892244.tar.xz |
local #include files inside "" instead <>
Diffstat (limited to 'src/caja-location-entry.c')
-rw-r--r-- | src/caja-location-entry.c | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/src/caja-location-entry.c b/src/caja-location-entry.c index fef9902c..4cfa7c22 100644 --- a/src/caja-location-entry.c +++ b/src/caja-location-entry.c @@ -31,24 +31,27 @@ */ #include <config.h> -#include "caja-location-entry.h" +#include <stdio.h> +#include <string.h> -#include "caja-window-private.h" -#include "caja-window.h" -#include <eel/eel-glib-extensions.h> -#include <eel/eel-gtk-macros.h> -#include <eel/eel-stock-dialogs.h> -#include <eel/eel-string.h> #include <gtk/gtk.h> #include <gdk/gdkkeysyms.h> #include <glib/gi18n.h> #include <gio/gio.h> -#include <libcaja-private/caja-file-utilities.h> -#include <libcaja-private/caja-entry.h> -#include <libcaja-private/caja-icon-dnd.h> -#include <libcaja-private/caja-clipboard.h> -#include <stdio.h> -#include <string.h> + +#include "../eel/eel-glib-extensions.h" +#include "../eel/eel-gtk-macros.h" +#include "../eel/eel-stock-dialogs.h" +#include "../eel/eel-string.h" + +#include "../libcaja-private/caja-file-utilities.h" +#include "../libcaja-private/caja-entry.h" +#include "../libcaja-private/caja-icon-dnd.h" +#include "../libcaja-private/caja-clipboard.h" + +#include "caja-location-entry.h" +#include "caja-window-private.h" +#include "caja-window.h" struct CajaLocationEntryDetails { |