Changeset 593 for trunk/dll/common.c


Ignore:
Timestamp:
Mar 31, 2007, 9:13:59 PM (18 years ago)
Author:
Gregg Young
Message:

Changes to remove GetPString from window class names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/common.c

    r574 r593  
    1616  07 Jan 07 GKY Updated Helv font to vector font Helvetica
    1717  22 Mar 07 GKY Use QWL_USER
     18  30 Mar 07 GKY Remove GetPString for window class names
    1819
    1920***********************************************************************/
     
    340341  // Create a children of frame window
    341342  hwndStatus = WinCreateWindow(hwndFrame,
    342                                GetPString(IDS_WCSTATUS),
     343                               WC_STATUS,
    343344                               "Status",
    344345                               WS_VISIBLE | SS_TEXT | DT_LEFT |
     
    359360
    360361  hwndStatus2 = WinCreateWindow(hwndFrame,
    361                                 GetPString(IDS_WCSTATUS),
     362                                WC_STATUS,
    362363                                "Status2",
    363364                                WS_VISIBLE | SS_TEXT | DT_LEFT |
     
    379380
    380381  hwndAttr = WinCreateWindow(hwndFrame,
    381                              GetPString(IDS_WCSTATUS),
     382                             WC_STATUS,
    382383                             "Attr",
    383384                             WS_VISIBLE | SS_TEXT | DT_CENTER |
     
    397398
    398399  hwndDate = WinCreateWindow(hwndFrame,
    399                              GetPString(IDS_WCSTATUS),
     400                             WC_STATUS,
    400401                             "Date",
    401402                             WS_VISIBLE | SS_TEXT | DT_CENTER |
     
    415416
    416417  hwndName = WinCreateWindow(hwndFrame,
    417                              GetPString(IDS_WCSTATUS),
     418                             WC_STATUS,
    418419                             "Name",
    419420                             WS_VISIBLE | SS_TEXT | DT_LEFT |
     
    433434
    434435  hwndTmp = WinCreateWindow(hwndFrame,
    435                             GetPString(IDS_WCTOOLBACK),
     436                            WC_TOOLBACK,
    436437                            NullStr,
    437438                            WS_VISIBLE | SS_TEXT | DT_CENTER | DT_VCENTER,
     
    450451
    451452  hwndBack = WinCreateWindow(hwndFrame,
    452                              GetPString(IDS_WCDRIVEBACK),
     453                             WC_DRIVEBACK,
    453454                             NullStr,
    454455                             WS_VISIBLE | SS_TEXT | DT_RIGHT | DT_BOTTOM,
     
    469470
    470471  hwndLED = WinCreateWindow(hwndFrame,
    471                             GetPString(IDS_WCLED),
     472                            WC_LED,
    472473                            "#920",
    473474                            WS_VISIBLE | SS_BITMAP,
     
    480481
    481482  hwndLEDHdr = WinCreateWindow(hwndFrame,
    482                                GetPString(IDS_WCLED),
     483                               WC_LED,
    483484                               "0",
    484485                               WS_VISIBLE | SS_TEXT | DT_VCENTER |
     
    493494
    494495  hwndAutoview = WinCreateWindow(hwndFrame,
    495                                  GetPString(IDS_WCAUTOVIEW),
     496                                 WC_AUTOVIEW,
    496497                                 NullStr,
    497498                                 WS_VISIBLE | SS_TEXT | DT_LEFT |
Note: See TracChangeset for help on using the changeset viewer.