Changeset 221


Ignore:
Timestamp:
Sep 3, 2002, 4:42:25 PM (23 years ago)
Author:
umoeller
Message:

Fixes for static functions.

Location:
trunk/src/helpers
Files:
2 edited

Legend:

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

    r209 r221  
    123123 ********************************************************************/
    124124
    125 PFNWP   G_pfnwpStatic = NULL;
     125PFNWP   G_pfnwpSepStatic = NULL;
    126126
    127127/*
     
    172172
    173173        default:
    174             mrc = G_pfnwpStatic(hwnd, msg, mp1, mp2);
     174            mrc = G_pfnwpSepStatic(hwnd, msg, mp1, mp2);
    175175    }
    176176
     
    192192                          &ciStatic))
    193193    {
    194         G_pfnwpStatic = ciStatic.pfnWindowProc;
     194        G_pfnwpSepStatic = ciStatic.pfnWindowProc;
    195195
    196196        return WinRegisterClass(hab,
  • trunk/src/helpers/dialog.c

    r213 r221  
    754754#ifdef DEBUG_DIALOG_WINDOWS
    755755
    756 static PFNWP G_pfnwpStatic = NULL;
     756static PFNWP G_pfnwpDebugStaticOrig = NULL;
    757757
    758758/*
     
    812812
    813813        default:
    814             mrc = G_pfnwpStatic(hwndBox, msg, mp1, mp2);
     814            mrc = G_pfnwpDebugStaticOrig(hwndBox, msg, mp1, mp2);
    815815    }
    816816
     
    853853                                    NULL))
    854854    {
    855         G_pfnwpStatic = WinSubclassWindow(hwndDebug, fnwpDebugFrame);
     855        G_pfnwpDebugStaticOrig = WinSubclassWindow(hwndDebug, fnwpDebugFrame);
    856856        winhSetPresColor(hwndDebug, PP_FOREGROUNDCOLOR, lcol);
    857857        WinSetWindowULong(hwndDebug, QWL_USER, lLineType);
Note: See TracChangeset for help on using the changeset viewer.