Changeset 1391 for trunk/dll/notebook.c
- Timestamp:
- Jan 12, 2009, 12:55:53 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/notebook.c
r1375 r1391 44 44 25 Dec 08 GKY Add ProcessDirectoryThread to allow optional recursive drive scan at startup. 45 45 01 Jan 09 GKY Add option to rescan tree container on eject of removable media 46 11 Jan 09 GKY Replace font names in the string file with global set at compile in init.c 46 47 47 48 ***********************************************************************/ … … 85 86 #include "fortify.h" 86 87 #include "info.h" // driveflags 88 #include "init.h" // font strings 87 89 88 90 static VOID SaveLastPageIndex(HWND hwnd); … … 3075 3077 "CollectorflWindowAttr", 3076 3078 &flWindowAttr, sizeof(ULONG)); 3079 //fixme to allow user to change presparams 1-10-09 GKY 3077 3080 PrfWriteProfileData(fmprof, 3078 3081 appname, 3079 3082 "Collector.Fontnamesize", 3080 GetPString(IDS_8HELVTEXT),3081 strlen( GetPString(IDS_8HELVTEXT)) + 1);3083 FNT_8HELVETICA, 3084 strlen(FNT_8HELVETICA) + 1); 3082 3085 } 3083 3086 dsDirCnrDefault.detailslongname = TRUE; … … 3133 3136 PrfWriteProfileData(fmprof, appname, "CollectorflWindowAttr", 3134 3137 &flWindowAttr, sizeof(ULONG)); 3138 //fixme to allow user to change presparams 1-10-09 GKY 3135 3139 PrfWriteProfileData(fmprof, appname, "Collector.Fontnamesize", 3136 GetPString(IDS_8HELVTEXT),3137 strlen( GetPString(IDS_8HELVTEXT)) + 1);3140 FNT_8HELVETICA, 3141 strlen(FNT_8HELVETICA) + 1); 3138 3142 } 3139 3143 if (hwndTree) { … … 3692 3696 else { 3693 3697 mp2 = WinSendMsg(mi.hwndSubMenu, MM_QUERYDEFAULTITEMID, MPVOID, MPVOID); 3694 //if (!mp2) 3698 //if (!mp2) // causes spurious error message on new installs GKY 1-9-09 3695 3699 // mp2 = MPFROMLONG(IDM_QUICKSETTINGS); 3696 3700 //Runtime_Error(pszSrcFile, __LINE__, "MM_QUERYDEFAULTITEMID");
Note:
See TracChangeset
for help on using the changeset viewer.