Changeset 219 for trunk/src/comctl32/tooltips.c
- Timestamp:
- Jun 26, 1999, 4:20:32 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/tooltips.c
r180 r219 1 /* $Id: tooltips.c,v 1. 6 1999-06-24 16:37:45cbratschi Exp $ */1 /* $Id: tooltips.c,v 1.7 1999-06-26 14:20:31 cbratschi Exp $ */ 2 2 /* 3 3 * Tool tip control … … 19 19 20 20 /* CB: Odin32 problems 21 - not defined colors: COLOR_INFOBK, COLOR_INFOTEXT22 21 - WM_NCCREATE not handled first -> title bar visible if WS_POPUP wasn't set before 23 22 */ … … 1858 1857 infoPtr->bActive = TRUE; 1859 1858 infoPtr->bTrackActive = FALSE; 1860 infoPtr->clrBk = RGB(0,0,0);//GetSysColor(COLOR_INFOBK);//CB: to change1861 infoPtr->clrText = RGB(255,255,255);//GetSysColor(COLOR_INFOTEXT);//CB: to change1859 infoPtr->clrBk = GetSysColor(COLOR_INFOBK); 1860 infoPtr->clrText = GetSysColor(COLOR_INFOTEXT); 1862 1861 1863 1862 nclm.cbSize = sizeof(NONCLIENTMETRICSA);
Note:
See TracChangeset
for help on using the changeset viewer.