Ignore:
Timestamp:
Dec 14, 2001, 11:41:33 PM (24 years ago)
Author:
umoeller
Message:

Lots of changes for icons and refresh.

File:
1 edited

Legend:

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

    r93 r123  
    540540                                // window still valid:
    541541                                // get the window's window proc
    542                                 PFNWP pfnwp = (PFNWP)WinQueryWindowPtr(pTimer->hwndTarget,
    543                                                                        QWP_PFNWP);
     542                                QMSG qmsg;
     543                                /* PFNWP pfnwp = (PFNWP)WinQueryWindowPtr(pTimer->hwndTarget,
     544                                                                       QWP_PFNWP); */
    544545
    545546                                // moved this up V0.9.14 (2001-08-01) [umoeller]
     
    547548
    548549                                // call the window proc DIRECTLY
    549                                 pfnwp(pTimer->hwndTarget,
     550                                qmsg.hwnd = pTimer->hwndTarget;
     551                                qmsg.msg = WM_TIMER;
     552                                qmsg.mp1 = (MPARAM)pTimer->usTimerID;
     553                                qmsg.mp2 = (MPARAM)0;
     554                                qmsg.time = 0;
     555                                qmsg.ptl.x = 0;
     556                                qmsg.ptl.y = 0;
     557                                qmsg.reserved = 0;
     558                                WinDispatchMsg(pSet->hab,
     559                                               &qmsg);
     560                                /* pfnwp(pTimer->hwndTarget,
    550561                                      WM_TIMER,
    551562                                      (MPARAM)pTimer->usTimerID,
    552                                       0);
     563                                      0); */
    553564                                    // V0.9.12 (2001-05-24) [umoeller]
    554565                                    // if the winproc chooses to start or
Note: See TracChangeset for help on using the changeset viewer.