app: Fix disordered windows.h include on display and gui sources
The headers provided by Windows SDK do not work disordered. Somehow, MINGW is more lenient regarding that error.
This commit is contained in:
parent
e285b70d6a
commit
232337550d
3 changed files with 3 additions and 3 deletions
|
|
@ -23,9 +23,9 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#include <windows.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#include "libgimpbase/gimpbase.h"
|
||||
|
|
|
|||
|
|
@ -89,9 +89,9 @@
|
|||
#include "themes.h"
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#include <windows.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#ifdef GDK_WINDOWING_QUARTZ
|
||||
|
|
|
|||
|
|
@ -26,9 +26,9 @@
|
|||
#endif
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#include <windows.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#include "libgimpbase/gimpbase.h"
|
||||
|
|
|
|||
Loading…
Reference in a new issue