Update source to v6.14.19098.19271

This commit is contained in:
Will Pearson
2019-04-09 10:17:14 -07:00
parent 98797aac6e
commit f2dc7fba67
97 changed files with 10406 additions and 7766 deletions

View File

@@ -341,8 +341,8 @@ int main( int argc, const char *argv[] )
ON::CloseFile(dump_fp);
}
const char* sDumpFilename = arg+5;
FILE* text_fp = ON::OpenFile(sDumpFilename,"w");
const ON_wString sDumpFilename = ON_FileSystemPath::ExpandUser(arg + 5);
FILE* text_fp = ON::OpenFile(sDumpFilename,L"w");
if ( text_fp )
{
dump_fp = text_fp;
@@ -390,7 +390,7 @@ int main( int argc, const char *argv[] )
continue;
}
ON_wString ws_arg = arg;
ON_wString ws_arg = ON_FileSystemPath::ExpandUser(arg);
const wchar_t* wchar_arg = ws_arg;
if ( ON::IsDirectory(wchar_arg) )