Changeset 1402 for trunk/dll/info.c
- Timestamp:
- Mar 14, 2009, 6:17:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/info.c
r1400 r1402 237 237 CommaFmtULL(szUnits, sizeof(szUnits), 238 238 (ULONGLONG) fsa.cUnitAvail, ' '); 239 sprintf(s, 240 "%s, %s, %s %s%s", 241 szMB, szKB, szUnits, 242 GetPString(IDS_UNITTEXT), &"s"[fsa.cUnitAvail == 1L]); 239 sprintf(s, "%s, %s, %s %s%s", 240 szMB, szKB, szUnits, 241 GetPString(IDS_UNITTEXT), &"s"[fsa.cUnitAvail == 1L]); 243 242 WinSetDlgItemText(hwnd, INFO_AVAILABLE, s); 244 243 sprintf(s, 245 246 247 244 GetPString(IDS_SECTORSTEXT), 245 fsa.cbSector, 246 fsa.cSectorUnit, &"s"[fsa.cSectorUnit == 1L]); 248 247 WinSetDlgItemText(hwnd, INFO_ALLOCUNITS, s); 249 248 … … 275 274 else { 276 275 sprintf(FileSystem, 277 278 276 GetPString(IDS_CANTQUERYVOLTEXT), 277 toupper(*pszFileName)); 279 278 Notify(FileSystem); 280 279 WinDismissDlg(hwnd, 0); … … 283 282 else { 284 283 sprintf(FileSystem, 285 286 284 GetPString(IDS_CANTQUERYALLOCTEXT), 285 toupper(*pszFileName)); 287 286 Notify(FileSystem); 288 287 WinDismissDlg(hwnd, 0); … … 292 291 FlagMsg(*pszFileName, s); 293 292 sprintf(FileSystem, 294 295 293 GetPString(IDS_DRIVEINACCESSIBLETEXT), 294 toupper(*pszFileName), s); 296 295 Notify(FileSystem); 297 296 WinDismissDlg(hwnd, 0);
Note:
See TracChangeset
for help on using the changeset viewer.