Changeset 1400 for trunk/dll/collect.c
- Timestamp:
- Mar 8, 2009, 6:50:25 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/collect.c
r1398 r1400 63 63 07 Feb 09 GKY Add *DateFormat functions to format dates based on locale 64 64 07 Feb 09 GKY Move repeated strings to PCSZs. 65 08 Mar 09 GKY Renamed commafmt.h i18nutil.h 66 08 Mar 09 GKY Additional strings move to PCSZs in init.c 65 67 66 68 ***********************************************************************/ … … 130 132 #include "newview.h" // StartViewer 131 133 #include "undel.h" // UndeleteDlgProc 132 #include " commafmt.h" // commafmt134 #include "i18nutil.h" // commafmt 133 135 #include "getnames.h" // insert_filename 134 136 #include "select.h" // InvertAll … … 1204 1206 1205 1207 case WM_PRESPARAMCHANGED: 1206 PresParamChanged(hwnd, "Collector", mp1, mp2);1208 PresParamChanged(hwnd, PCSZ_COLLECTOR, mp1, mp2); 1207 1209 break; 1208 1210 … … 1415 1417 CNRINFO cnri; 1416 1418 1417 RestorePresParams(hwnd, "Collector");1418 LoadDetailsSwitches( "Collector", &dcd->ds);1419 RestorePresParams(hwnd, PCSZ_COLLECTOR); 1420 LoadDetailsSwitches(PCSZ_COLLECTOR, &dcd->ds); 1419 1421 1420 1422 dcd->amextracted = FALSE; // Say not busy … … 1580 1582 else { 1581 1583 if (!PostMsg(dcd->hwndObject, UM_COLLECTFROMFILE, mp1, mp2)) { 1582 Runtime_Error(pszSrcFile, __LINE__, "PostMsg");1584 Runtime_Error(pszSrcFile, __LINE__, PCSZ_POSTMSG); 1583 1585 } 1584 1586 } … … 1595 1597 if (dcd) { 1596 1598 if (!PostMsg(dcd->hwndObject, UM_COMMAND, mp1, mp2)) { 1597 Runtime_Error(pszSrcFile, __LINE__, "PostMsg");1599 Runtime_Error(pszSrcFile, __LINE__, PCSZ_POSTMSG); 1598 1600 FreeListInfo((LISTINFO *) mp1); 1599 1601 } … … 2082 2084 AdjustDetailsSwitches(hwnd, dcd->hwndLastMenu, 2083 2085 SHORT1FROMMP(mp1), NULL, 2084 "Collector", &dcd->ds, FALSE);2086 PCSZ_COLLECTOR, &dcd->ds, FALSE); 2085 2087 break; 2086 2088 … … 2262 2264 *li->targetpath = 0; 2263 2265 if (!PostMsg(dcd->hwndObject, action, MPFROMP(li), MPVOID)) { 2264 Runtime_Error(pszSrcFile, __LINE__, "PostMsg");2266 Runtime_Error(pszSrcFile, __LINE__, PCSZ_POSTMSG); 2265 2267 FreeListInfo(li); 2266 2268 }
Note:
See TracChangeset
for help on using the changeset viewer.