Changeset 4544 for trunk/src


Ignore:
Timestamp:
Oct 28, 2000, 4:36:48 PM (25 years ago)
Author:
sandervl
Message:

print build in About Odin dialog (ShellAbout)

Location:
trunk/src/shell32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/shell32_En.orc

    r3257 r4544  
    1 /* $Id: shell32_En.orc,v 1.3 2000-03-28 15:28:46 cbratschi Exp $ */
     1/* $Id: shell32_En.orc,v 1.4 2000-10-28 14:36:45 sandervl Exp $ */
    22LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
    33
     
    1212 ICON "", 1088, 189, 50, 14, 16
    1313 LTEXT "", 100, 8, 50, 137, 33
    14  LTEXT "Odin was brought to you by:", 98, 8, 75, 137, 10
     14 LTEXT "Odin was brought to you by:", 98, 8, 75, 90, 10
     15 LTEXT "", 2002, 100, 75, 90, 10
    1516 CONTROL "",2001,"Static",SS_BITMAP,8,2,148,26
    1617}
  • trunk/src/shell32/shell32_odin.cpp

    r4121 r4544  
    1 /* $Id: shell32_odin.cpp,v 1.1 2000-08-30 13:52:54 sandervl Exp $ */
     1/* $Id: shell32_odin.cpp,v 1.2 2000-10-28 14:36:48 sandervl Exp $ */
    22
    33/*
     
    9393 * AboutDlgProc32                           (internal)
    9494 */
    95 #define IDC_ODINLOGO 2001
    96 #define IDB_ODINLOGO 5555
     95#define IDC_ODINLOGO    2001
     96#define IDC_ODINBUILDNR 2002
     97#define IDB_ODINLOGO    5555
    9798
    9899BOOL WINAPI AboutDlgProc( HWND hWnd, UINT msg, WPARAM wParam,
     
    117118            SetWindowTextA( GetDlgItem(hWnd, IDC_STATIC_TEXT), info->szOtherStuff );
    118119
     120            sprintf( AppTitle, "(%s)", __DATE__);
     121            SetWindowTextA( GetDlgItem(hWnd, IDC_ODINBUILDNR), AppTitle);
    119122            HWND hwndOdinLogo = GetDlgItem(hWnd, IDC_ODINLOGO);
    120123            if(hwndOdinLogo) {
Note: See TracChangeset for help on using the changeset viewer.