Ignore:
Timestamp:
Jul 12, 1999, 5:58:51 PM (26 years ago)
Author:
cbratschi
Message:

wine-990704 updates, TBCUSTOMIZE implemented

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/tooltips.c

    r285 r295  
    1 /* $Id: tooltips.c,v 1.11 1999-07-07 17:08:43 cbratschi Exp $ */
     1/* $Id: tooltips.c,v 1.12 1999-07-12 15:58:49 cbratschi Exp $ */
    22/*
    33 * Tool tip control
     
    11331133    if (nTool == -1) return 0;
    11341134
    1135     TOOLTIPS_GetTipText(hwnd,infoPtr,nTool);
     1135    TOOLTIPS_GetTipText(hwnd,infoPtr,nTool); //CB: get text
    11361136
    11371137    lstrcpyWtoA(lpToolInfo->lpszText,infoPtr->szTipText);
     
    11561156    if (nTool == -1) return 0;
    11571157
    1158     TOOLTIPS_GetTipText(hwnd,infoPtr,nTool);
     1158    TOOLTIPS_GetTipText(hwnd,infoPtr,nTool); //CB: get text
    11591159
    11601160    lstrcpyW(lpToolInfo->lpszText,infoPtr->szTipText);
     
    19791979}
    19801980
     1981static LRESULT
     1982TOOLTIPS_NotifyFormat (HWND hwnd, WPARAM wParam, LPARAM lParam)
     1983{
     1984//    FIXME ("hwnd=%x wParam=%x lParam=%lx\n", hwnd, wParam, lParam);
     1985
     1986    return 0;
     1987}
    19811988
    19821989static LRESULT
     
    20202027 * returns the length, in characters, of the tip text
    20212028 ******************************************************************/
     2029
    20222030static LRESULT
    20232031TOOLTIPS_OnWMGetTextLength(HWND hwnd, WPARAM wParam, LPARAM lParam)
     
    23212329            return TOOLTIPS_NCHitTest (hwnd, wParam, lParam);
    23222330
    2323 /*      case WM_NOTIFYFORMAT: */
    2324 /*          return TOOLTIPS_NotifyFormat (hwnd, wParam, lParam); */
     2331        case WM_NOTIFYFORMAT:
     2332            return TOOLTIPS_NotifyFormat (hwnd, wParam, lParam);
    23252333
    23262334        case WM_PAINT:
Note: See TracChangeset for help on using the changeset viewer.