Changeset 1806 for trunk/dll/notebook.c
- Timestamp:
- May 25, 2015, 6:31:12 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/notebook.c
r1778 r1806 66 66 09 Feb 14 GKY Fix separate parameters. Moved to general page renamed separate settings 67 67 for apps. 68 25 May 15 GKY Auto open help only on first access of quick setting page during a session. 68 69 69 70 ***********************************************************************/ … … 3831 3832 HAB hab; 3832 3833 static HACCEL haccelCfg = NULLHANDLE; 3834 static BOOL fShowedHelpThisSession = FALSE; 3833 3835 3834 3836 switch (msg) { … … 3935 3937 3936 3938 // If quick settings page requested, assume request is for first time init 3937 // Turn to cfg page and show help 3939 // Turn to cfg page and show help; open help only the first yime in each session 3938 3940 // Page will not be available if running fm/2 lite or if load error 3939 3941 // 15 Feb 08 SHL fixme to do just once? … … 3948 3950 BKM_TURNTOPAGE, MPFROMLONG(np[x].ulPageId), MPVOID); 3949 3951 PostMsg(hwnd, UM_FOCUSME, MPFROMLONG(np[x].hwnd), MPVOID); 3950 PostMsg(np[x].hwnd, WM_COMMAND, MPFROM2SHORT(IDM_HELP, 0), MPVOID); 3952 if (!fShowedHelpThisSession) { 3953 PostMsg(np[x].hwnd, WM_COMMAND, MPFROM2SHORT(IDM_HELP, 0), MPVOID); 3954 fShowedHelpThisSession = TRUE; 3955 } 3951 3956 } 3952 3957 else if (uPageIndex >= x) {
Note:
See TracChangeset
for help on using the changeset viewer.