Changeset 1362


Ignore:
Timestamp:
Dec 29, 2008, 12:19:12 AM (17 years ago)
Author:
Gregg Young
Message:

Add databar to utilities menu (Ticket 280)

Location:
trunk/dll
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/fm3dll2.h

    r1360 r1362  
    2424  01 Sep 08 GKY Add IDM_*TLS for icon resources for the default toolbars
    2525  27 Dec 08 GKY Add refresh removable media to tree container menus
     26  28 Dec 08 GKY Added Databar to utilities menu
    2627
    2728  Align with spaces only - no tabs please
     
    378379#define IDM_SAVETOCLIPFILENAME 1161
    379380#define IDM_APPENDTOCLIPFILENAME 1162
     381#define IDM_DATABAR         1163
    380382
    381383#define IDM_UTILITIESMENU   2000
  • trunk/dll/fm3res.rc

    r1360 r1362  
    4141  26 Dec 08 GKY Rework MLE menus (add "view") so toggle word wrap isn't buried on a submenu.
    4242  27 Dec 08 GKY Add refresh removable media to tree container menus
     43  28 Dec 08 GKY Added Databar to utilities menu
    4344
    4445***********************************************************************/
     
    221222         MENUITEM "See ~all files",    IDM_SEEALL
    222223         MENUITEM "Compar~e directories...",IDM_COMPARE
     224         MENUITEM "DataBar",           IDM_DATABAR
    223225         MENUITEM "",                  -1,               MIS_SEPARATOR
    224226         MENUITEM "~INI viewer",       IDM_INIVIEWER
  • trunk/dll/mainwnd.c

    r1354 r1362  
    7474                tree scan completion; prevents duplicate directory names in tree.
    7575  10 Dec 08 SHL Integrate exception handler support
     76  28 Dec 08 GKY Added Databar to utilities menu
    7677
    7778***********************************************************************/
     
    53005301    break;
    53015302
     5303  case IDM_DATABAR:
     5304    CreateDataBar(HWND_DESKTOP, 0);
     5305    break;
     5306
    53025307  case IDM_TOOLLEFT:
    53035308  case IDM_TOOLRIGHT:
Note: See TracChangeset for help on using the changeset viewer.