From: Enrico Forestieri Date: Fri, 11 Jul 2014 14:49:10 +0000 (+0200) Subject: Fix compatibility issue with 64-bit cygwin. X-Git-Tag: 2.2.0alpha1~1773 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=b3735501c7952ec53600f94d90ae8e164300ca76;p=features.git Fix compatibility issue with 64-bit cygwin. --- diff --git a/src/support/os_cygwin.cpp b/src/support/os_cygwin.cpp index e0c0bd17a0..572273ce2c 100644 --- a/src/support/os_cygwin.cpp +++ b/src/support/os_cygwin.cpp @@ -449,7 +449,7 @@ bool autoOpenFile(string const & filename, auto_open_mode const mode, // reference: http://msdn.microsoft.com/en-us/library/bb762153.aspx string const win_path = to_local8bit(from_utf8(convert_path(filename, PathStyle(windows)))); char const * action = (mode == VIEW) ? "open" : "edit"; - bool success = reinterpret_cast(ShellExecute(NULL, action, + bool success = reinterpret_cast(ShellExecute(NULL, action, win_path.c_str(), NULL, NULL, 1)) > 32; if (!path.empty() && !lyxrc.texinputs_prefix.empty()) {