Changeset 1642 for trunk/dll/init.c


Ignore:
Timestamp:
Oct 22, 2011, 11:40:56 PM (14 years ago)
Author:
Gregg Young
Message:

Fixed thread notes dialog to reopen on startup if it was open on shutdown.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/init.c

    r1607 r1642  
    107107  06 Aug 11 GKY Fixed failure to initalize pFM2SaveDirectory if TEMP and TMP were not present
    108108                or invalid
     109  22 Oct 11 GKY Thread notes dialog now reopens on startup if it was open on shutdown.
    109110
    110111***********************************************************************/
     
    13241325  PrfQueryProfileData(fmprof, appname, "NoFoldMenu", &fNoFoldMenu, &size);
    13251326  size = sizeof(BOOL);
    1326   PrfQueryProfileData(fmprof, appname, "ThreadNotes", &fThreadNotes, &size);
    1327   size = sizeof(BOOL);
    13281327  PrfQueryProfileData(fmprof, FM3Str, "Prnpagenums", &prnpagenums, &size);
    13291328  size = sizeof(BOOL);
     
    15971596  size = sizeof(BOOL);
    15981597  PrfQueryProfileData(fmprof, appname, "TrashCan", &fTrashCan, &size);
     1598  size = sizeof(BOOL);
     1599  PrfQueryProfileData(fmprof, appname, "ThreadNotes", &fThreadNotes, &size);
     1600  if (fThreadNotes)
     1601    ShowNote();
    15991602
    16001603  LoadDetailsSwitches(PCSZ_DIRCNR, &dsDirCnrDefault, FALSE);
Note: See TracChangeset for help on using the changeset viewer.