Use _WIN32 rather than __WIN32__ as that's not defined in clang/MINGW64

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_testplant_branch@40178 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Marcian Lytwyn 2016-10-25 20:42:54 +00:00
parent 7d6a4ef7eb
commit 1e919769c8

View file

@ -1030,7 +1030,7 @@ NSMutableDictionary *pasteboards = nil;
/*
* Ensure that the OS pasteboard system is initialised.
*/
#if defined(__WIN32__) || defined(__CYGWIN__)
#if defined(_WIN32) || defined(__CYGWIN__)
xPbClass = NSClassFromString(@"Win32PbOwner");
#else
xPbClass = NSClassFromString(@"XPbOwner");