Changeset 752 for trunk/dll/notebook.c
- Timestamp:
- Aug 3, 2007, 4:36:29 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/notebook.c
r575 r752 223 223 case WM_INITDLG: 224 224 WinSendDlgItemMsg(hwnd, CFGS_FILESTOGET, SPBM_SETTEXTLIMIT, 225 MPFROMSHORT( 4L), MPVOID);225 MPFROMSHORT(2048), MPVOID); 226 226 WinSendDlgItemMsg(hwnd, CFGS_FILESTOGET, SPBM_OVERRIDESETLIMITS, 227 MPFROMLONG( 2048L), MPFROMLONG(16L));227 MPFROMLONG(102400), MPFROMLONG(2048)); 228 228 PostMsg(hwnd, UM_UNDO, MPVOID, MPVOID); 229 229 break; … … 318 318 WinSendDlgItemMsg(hwnd, CFGS_FILESTOGET, SPBM_QUERYVALUE, 319 319 MPFROMP(&temp), MPFROM2SHORT(0, SPBQ_DONOTUPDATE)); 320 if (temp < 16L)321 temp = 16L;322 else if (temp > 2048L)323 temp = 2048L;320 if (temp < 2048) 321 temp = 2048; 322 else if (temp > 102400) 323 temp = 102400; 324 324 FilesToGet = temp; 325 325 PrfWriteProfileData(fmprof, … … 2183 2183 fVerify = FALSE; 2184 2184 DosSetVerify(FALSE); 2185 FilesToGet = 512;2185 FilesToGet = 10240; 2186 2186 fQuickArcFind = TRUE; 2187 2187 fMinOnOpen = TRUE; … … 2234 2234 fQuickArcFind = TRUE; 2235 2235 fNoRemovableScan = TRUE; 2236 FilesToGet = 128;2236 FilesToGet = 2048; 2237 2237 fFreeTree = FALSE; 2238 2238 fSplitStatus = TRUE; … … 2353 2353 fQuickArcFind = TRUE; 2354 2354 fNoRemovableScan = FALSE; 2355 FilesToGet = 1 28;2355 FilesToGet = 10240; 2356 2356 fFreeTree = FALSE; 2357 2357 fSplitStatus = TRUE;
Note:
See TracChangeset
for help on using the changeset viewer.