Changeset 7408 for trunk/src/comctl32/tooltips.cpp
- Timestamp:
- Nov 21, 2001, 12:51:07 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/tooltips.cpp
r3970 r7408 1 /* $Id: tooltips.cpp,v 1.11 2000-08-08 17:05:01 cbratschi Exp $ */2 1 /* 3 2 * Tool tip control … … 734 733 SetWindowLongA ((HWND)toolPtr->uId,GWL_WNDPROC,(LONG)lpttsi->wpOrigProc); 735 734 RemovePropA ((HWND)toolPtr->uId,COMCTL32_aSubclass); 735 #ifdef __WIN32OS2__ 736 COMCTL32_Free(lpttsi); 737 #else 736 738 COMCTL32_Free(&lpttsi); 739 #endif 737 740 } 738 741 //else … … 748 751 SetWindowLongA((HWND)toolPtr->hwnd,GWL_WNDPROC,(LONG)lpttsi->wpOrigProc); 749 752 RemovePropA((HWND)toolPtr->hwnd,COMCTL32_aSubclass); 753 #ifdef __WIN32OS2__ 754 COMCTL32_Free(lpttsi); 755 #else 750 756 COMCTL32_Free(&lpttsi); 757 #endif 751 758 } else lpttsi->uRefCount--; 752 759 } … … 2045 2052 (LONG)lpttsi->wpOrigProc); 2046 2053 RemovePropA ((HWND)toolPtr->uId, COMCTL32_aSubclass); 2054 #ifdef __WIN32OS2__ 2055 COMCTL32_Free(lpttsi); 2056 #else 2047 2057 COMCTL32_Free (&lpttsi); 2058 #endif 2048 2059 } 2049 2060 } … … 2055 2066 (LONG)lpttsi->wpOrigProc); 2056 2067 RemovePropA ((HWND)toolPtr->hwnd, COMCTL32_aSubclass); 2068 #ifdef __WIN32OS2__ 2069 COMCTL32_Free(lpttsi); 2070 #else 2057 2071 COMCTL32_Free (&lpttsi); 2072 #endif 2058 2073 } 2059 2074 }
Note:
See TracChangeset
for help on using the changeset viewer.