Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Sat, 24 May 2014 11:33:27 UTC Commit: f3ac7480c52d71188d16ddb350ea12fdbf18083d https://github.com/geany/geany/commit/f3ac7480c52d71188d16ddb350ea12fdbf1808...
Log Message: ----------- Re-order header includes and cleanup unused imports
Modified Paths: -------------- src/win32.c
Modified: src/win32.c 37 lines changed, 19 insertions(+), 18 deletions(-) =================================================================== @@ -23,11 +23,29 @@ * Special functions for the win32 platform, to provide native dialogs. */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include "win32.h"
#ifdef G_OS_WIN32
-#include "geany.h" +#include "dialogs.h" +#include "document.h" +#include "editor.h" +#include "filetypes.h" +#include "project.h" +#include "support.h" +#include "ui_utils.h" +#include "utils.h" + +#include <ctype.h> +#include <fcntl.h> +#include <io.h> +#include <math.h> +#include <stdlib.h> +#include <string.h>
#define VC_EXTRALEAN #define WIN32_LEAN_AND_MEAN @@ -35,27 +53,10 @@ #include <commdlg.h> #include <shellapi.h> #include <shlobj.h> -#include <io.h> -#include <fcntl.h> - -#include <string.h> -#include <ctype.h> -#include <math.h> -#include <stdlib.h>
#include <glib/gstdio.h> #include <gdk/gdkwin32.h>
-#include "document.h" -#include "support.h" -#include "utils.h" -#include "ui_utils.h" -#include "sciwrappers.h" -#include "dialogs.h" -#include "filetypes.h" -#include "project.h" -#include "editor.h" - #define BUFSIZE 4096 #define CMDSIZE 32768
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).