Ignore:
Timestamp:
Sep 3, 2002, 8:17:46 PM (23 years ago)
Author:
umoeller
Message:

Minor adjustments for new static handling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/comctl.c

    r221 r222  
    133133 */
    134134
    135 static MRESULT EXPENTRY fnwpSeparatorLine(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2)
     135STATIC MRESULT EXPENTRY fnwpSeparatorLine(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2)
    136136{
    137137    MRESULT mrc = 0;
     
    10741074 */
    10751075
    1076 static PANIMATIONDATA CreateAnimationData(HAB hab,
     1076STATIC PANIMATIONDATA CreateAnimationData(HAB hab,
    10771077                                          HWND hwndStatic,
    10781078                                          USHORT cAnimations)
     
    15351535 ********************************************************************/
    15361536
    1537 static PFNWP G_pfnwpOrigStatic = NULL;
     1537STATIC PFNWP G_pfnwpColorRectOrigStatic = NULL;
    15381538
    15391539/*
     
    15571557 */
    15581558
    1559 static MRESULT EXPENTRY ctl_fnwpSubclassedColorRect(HWND hwndStatic, ULONG msg, MPARAM mp1, MPARAM mp2)
     1559STATIC MRESULT EXPENTRY ctl_fnwpSubclassedColorRect(HWND hwndStatic, ULONG msg, MPARAM mp1, MPARAM mp2)
    15601560{
    15611561    MRESULT mrc = 0;
     
    16381638
    16391639        default:
    1640             mrc = G_pfnwpOrigStatic(hwndStatic, msg, mp1, mp2);
     1640            mrc = G_pfnwpColorRectOrigStatic(hwndStatic, msg, mp1, mp2);
    16411641        break;
    16421642    }
     
    16591659                                  ctl_fnwpSubclassedColorRect))
    16601660    {
    1661         G_pfnwpOrigStatic = pfnwp;
     1661        G_pfnwpColorRectOrigStatic = pfnwp;
    16621662        return TRUE;
    16631663    }
Note: See TracChangeset for help on using the changeset viewer.