summaryrefslogtreecommitdiffstats
path: root/src/gui_w32.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-12-01 20:32:29 +0100
committerBram Moolenaar <Bram@vim.org>2016-12-01 20:32:29 +0100
commitb04a98f6c3cca14bf055934b0a793f4dc376858b (patch)
tree1c7a13b04219d7477dcdcb8dbd7f56bbce2485c2 /src/gui_w32.c
parent87f3d202a90bd2d08a7afd55b3486b10bef858bb (diff)
patch 8.0.0114v8.0.0114
Problem: Coding style not optimal. Solution: Add spaces. (Ken Takata)
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r--src/gui_w32.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c
index 84a23787a3..eae37bf4d9 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -3551,12 +3551,12 @@ gui_mch_browseW(
filterp = convert_filterW(filter);
vim_memset(&fileStruct, 0, sizeof(OPENFILENAMEW));
-#ifdef OPENFILENAME_SIZE_VERSION_400W
+# ifdef OPENFILENAME_SIZE_VERSION_400W
/* be compatible with Windows NT 4.0 */
fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400W;
-#else
+# else
fileStruct.lStructSize = sizeof(fileStruct);
-#endif
+# endif
if (title != NULL)
titlep = enc_to_utf16(title, NULL);
@@ -3593,10 +3593,10 @@ gui_mch_browseW(
* Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog.
*/
fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY);
-#ifdef FEAT_SHORTCUT
+# ifdef FEAT_SHORTCUT
if (curbuf->b_p_bin)
fileStruct.Flags |= OFN_NODEREFERENCELINKS;
-#endif
+# endif
if (saving)
{
if (!GetSaveFileNameW(&fileStruct))