mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix compatibility issue with 64-bit cygwin.
This commit is contained in:
parent
154cd41119
commit
47e263fa7f
@ -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<int>(ShellExecute(NULL, action,
|
||||
bool success = reinterpret_cast<long>(ShellExecute(NULL, action,
|
||||
win_path.c_str(), NULL, NULL, 1)) > 32;
|
||||
|
||||
if (!path.empty() && !lyxrc.texinputs_prefix.empty()) {
|
||||
|
@ -44,6 +44,8 @@ What's new
|
||||
|
||||
* BUILD/INSTALLATION
|
||||
|
||||
- Fix compatibility issue with 64-bit cygwin.
|
||||
|
||||
|
||||
|
||||
** Bug fixes:
|
||||
|
Loading…
Reference in New Issue
Block a user