summaryrefslogtreecommitdiffstats
path: root/src/if_ole.cpp
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-02-18 21:41:37 +0100
committerBram Moolenaar <Bram@vim.org>2019-02-18 21:41:37 +0100
commit0472b6d149445579e3a63519b15f099f9adda3f7 (patch)
treeeb18d68b92ec39e7ea27de818df4b6b68c23d59d /src/if_ole.cpp
parentd53931ae7306acce2cfe8c44db0a15d79adf9e00 (diff)
patch 8.1.0949: MS-windows defines GUI macros different than other systemsv8.1.0949
Problem: MS-windows defines GUI macros different than other systems. Solution: Swap FEAT_GUI and FEAT_GUI_MSWIN. (Hirohito Higashi, closes #3996)
Diffstat (limited to 'src/if_ole.cpp')
-rw-r--r--src/if_ole.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_ole.cpp b/src/if_ole.cpp
index 8ee348d662..8780847ad8 100644
--- a/src/if_ole.cpp
+++ b/src/if_ole.cpp
@@ -6,7 +6,7 @@
* Do ":help credits" in Vim to see a list of people who contributed.
*/
-#if defined(FEAT_OLE) && defined(WIN32) && defined(FEAT_GUI)
+#if defined(FEAT_OLE) && defined(FEAT_GUI_MSWIN)
/*
* OLE server implementation.
*