Changeset 1664 for trunk/dll/notebook.c
- Timestamp:
- Aug 5, 2012, 2:11:07 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/notebook.c
r1574 r1664 62 62 24 OCT 10 GKY Fixed spurious error message when labels in tree are changed with a 63 63 "not ready" drive selected 64 04 Aug 12 GKY Changes to allow copy and move over readonly files with a warning dialog; also added a warning dialog 65 for delete of readonly files 64 66 65 67 ***********************************************************************/ … … 188 190 BOOL fVerify; 189 191 BOOL fViewChild; 192 BOOL fWarnReadOnly; 190 193 HINI fmprof; 191 194 ULONG fwsAnimate; … … 1551 1554 WinCheckButton(hwnd, CFGG_ERRORBEEPOFF, fErrorBeepOff); 1552 1555 WinCheckButton(hwnd, CFGG_ALERTBEEPOFF, fAlertBeepOff); 1556 WinCheckButton(hwnd, CFGG_WARNREADONLY, fWarnReadOnly); 1553 1557 { 1554 1558 long th = fNoFinger ? 2 : (fNoDead ? 1 : 0); … … 1675 1679 fErrorBeepOff = WinQueryButtonCheckstate(hwnd, CFGG_ERRORBEEPOFF); 1676 1680 PrfWriteProfileData(fmprof, appname, "ErrorBeepOff", 1677 &fErrorBeepOff, sizeof(BOOL)); 1681 &fErrorBeepOff, sizeof(BOOL)); 1682 fWarnReadOnly = WinQueryButtonCheckstate(hwnd, CFGG_WARNREADONLY); 1683 PrfWriteProfileData(fmprof, appname, "WarnReadOnly", 1684 &fWarnReadOnly, sizeof(BOOL)); 1678 1685 { 1679 1686 WinSendDlgItemMsg(hwnd, CFGG_CMDLNLNGTH, SPBM_QUERYVALUE,
Note:
See TracChangeset
for help on using the changeset viewer.