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
ad3acc8b5a
commit
4f6864e851
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