Browse Subversion Repository
Diff of /trunk/teraterm/teraterm/filesys_log.cpp
Parent Directory
| Revision Log
| Patch
| 585 |
wchar_t fname[MAX_PATH]; |
wchar_t fname[MAX_PATH]; |
| 586 |
GetDlgItemTextW(Dialog, IDC_FOPT_FILENAME_EDIT, fname, _countof(fname)); |
GetDlgItemTextW(Dialog, IDC_FOPT_FILENAME_EDIT, fname, _countof(fname)); |
| 587 |
|
|
| 588 |
wchar_t FNFilter[128*3]; |
wchar_t *FNFilter = GetCommonDialogFilterW(NULL, UILanguageFile); |
|
get_lang_msgW("FILEDLG_ALL_FILTER", FNFilter, sizeof(FNFilter), L"All(*.*)\\0*.*\\0\\0", UILanguageFile); |
|
| 589 |
|
|
| 590 |
wchar_t caption[MAX_PATH]; |
wchar_t caption[MAX_PATH]; |
| 591 |
wchar_t uimsg[MAX_UIMSG]; |
wchar_t uimsg[MAX_UIMSG]; |
| 607 |
ofn.nMaxFile = _countof(fname); |
ofn.nMaxFile = _countof(fname); |
| 608 |
ofn.lpstrTitle = caption; |
ofn.lpstrTitle = caption; |
| 609 |
BOOL Ok = GetSaveFileNameW(&ofn); |
BOOL Ok = GetSaveFileNameW(&ofn); |
| 610 |
|
free(FNFilter); |
| 611 |
if (Ok) { |
if (Ok) { |
| 612 |
SetDlgItemTextW(Dialog, IDC_FOPT_FILENAME_EDIT, fname); |
SetDlgItemTextW(Dialog, IDC_FOPT_FILENAME_EDIT, fname); |
| 613 |
} |
} |
|
|
Legend:
| Removed from v.8916 |
|
| changed lines |
| |
Added in v.8943 |
|
|
| |