mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 15:31:14 +00:00
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:
parent
7d6a4ef7eb
commit
1e919769c8
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue