Changeset 796 for trunk/dll/init.c
- Timestamp:
- Aug 22, 2007, 1:22:27 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/init.c
r789 r796 31 31 18 Aug 07 JBS Added code to read Details* keys from the INI file (Ticket 118) 32 32 19 Aug 07 SHL Ensure FilesToGet in valid range 33 21 Aug 07 GKY Make Subject column in dircnr sizable and movable from the rigth to the left pane 33 34 34 35 ***********************************************************************/ … … 1272 1273 &size); 1273 1274 size = sizeof(ULONG); 1274 PrfQueryProfileData(fmprof, appname, "FilesToGet", (PVOID) &FilesToGet,1275 PrfQueryProfileData(fmprof, appname, "FilesToGet", (PVOID) &FilesToGet, 1275 1276 &size); 1276 1277 if (FilesToGet < FILESTOGET_MIN) … … 1319 1320 size = sizeof(BOOL); 1320 1321 PrfQueryProfileData(fmprof, appname, "DetailsIcon", (PVOID) &detailsicon, 1321 &size); 1322 &size); 1323 size = sizeof(BOOL); 1324 PrfQueryProfileData(fmprof, appname, "SubjectInLeftPane", (PVOID) &fSubjectInLeftPane, 1325 &size); 1326 size = sizeof(ULONG); 1327 PrfQueryProfileData(fmprof, appname, "SubjectDisplayWidth", (PVOID) &SubjectDisplayWidth, 1328 &size); 1329 if (SubjectDisplayWidth < 50) 1330 SubjectDisplayWidth = 0; 1331 else if (SubjectDisplayWidth > 1000) 1332 SubjectDisplayWidth = 1000; 1333 size = sizeof(BOOL); 1334 PrfQueryProfileData(fmprof, appname, "SubjectLengthMax", (PVOID) &fSubjectLengthMax, 1335 &size); 1322 1336 1323 1337 /* load pointers and icons we use */
Note:
See TracChangeset
for help on using the changeset viewer.