Ignore:
Timestamp:
Dec 24, 2002, 8:44:35 AM (23 years ago)
Author:
umoeller
Message:

Misc fixes.

File:
1 edited

Legend:

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

    r235 r238  
    120120    {
    121121        // put the call in brackets so the macro won't apply here
    122         return ((WinSendMsg)(hwnd, msg, mp1, mp2));
     122        return (WinSendMsg)(hwnd, msg, mp1, mp2);
    123123    }
    124124
     
    138138    MRESULT winhSendDlgItemMsg(HWND hwnd, ULONG id, ULONG msg, MPARAM mp1, MPARAM mp2)
    139139    {
    140         return ((WinSendDlgItemMsg)(hwnd, id, msg, mp1, mp2));
     140        return (WinSendDlgItemMsg)(hwnd, id, msg, mp1, mp2);
    141141    }
    142142
     
    157157    {
    158158        // put the call in brackets so the macro won't apply here
    159         return ((WinPostMsg)(hwnd, msg, mp1, mp2));
     159        return (WinPostMsg)(hwnd, msg, mp1, mp2);
    160160    }
    161161
     
    169169    {
    170170        // put the call in brackets so the macro won't apply here
    171         return ((WinWindowFromID)(hwnd, id));
     171        return (WinWindowFromID)(hwnd, id);
    172172    }
    173173
     
    181181    {
    182182        // put the call in brackets so the macro won't apply here
    183         return ((WinQueryWindow)(hwnd, lCode));
     183        return (WinQueryWindow)(hwnd, lCode);
    184184    }
    185185
     
    193193    {
    194194        // put the call in brackets so the macro won't apply here
    195         return ((WinQueryWindowPtr)(hwnd, index));
     195        return (WinQueryWindowPtr)(hwnd, index);
    196196    }
    197197
     
    26172617    ULONG   ul = 0;
    26182618
    2619     /* if (!WinIsWindowVisible(hwndDlg))
    2620         return (FALSE); */
    2621 
    26222619    if ((pmpFlags) && (pxac))
    26232620    {
Note: See TracChangeset for help on using the changeset viewer.