Changeset 12250


Ignore:
Timestamp:
Nov 9, 1999, 3:38:01 PM (25 years ago)
Author:
achimha
Message:

fixed warnings

File:
1 edited

Legend:

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

    r12153 r12250  
    1 /* $Id: tooltips.c,v 1.16 1999-11-02 21:44:03 achimha Exp $ */
     1/* $Id: tooltips.c,v 1.17 1999-11-09 14:38:01 achimha Exp $ */
    22/*
    33 * Tool tip control
     
    291291
    292292    if (infoPtr->nTool == -1) {
    293         TRACE("invalid tool (-1)!\n");
     293//      TRACE("invalid tool (-1)!\n");
    294294        return;
    295295    }
     
    297297    infoPtr->nCurrentTool = infoPtr->nTool;
    298298
    299     TRACE("Show tooltip pre %d!\n", infoPtr->nTool);
     299//    TRACE("Show tooltip pre %d!\n", infoPtr->nTool);
    300300
    301301    TOOLTIPS_GetTipText (hwnd, infoPtr, infoPtr->nCurrentTool);
     
    306306    }
    307307
    308     TRACE("Show tooltip %d!\n", infoPtr->nCurrentTool);
     308//    TRACE("Show tooltip %d!\n", infoPtr->nCurrentTool);
    309309    toolPtr = &infoPtr->tools[infoPtr->nCurrentTool];
    310310
     
    318318
    319319    TOOLTIPS_CalcTipSize (hwnd, infoPtr, &size);
    320     TRACE("size %d - %d\n", size.cx, size.cy);
     320//    TRACE("size %d - %d\n", size.cx, size.cy);
    321321
    322322    if (toolPtr->uFlags & TTF_CENTERTIP) {
     
    337337    }
    338338
    339     TRACE("pos %d - %d\n", rect.left, rect.top);
     339//    TRACE("pos %d - %d\n", rect.left, rect.top);
    340340
    341341    rect.right = rect.left + size.cx;
Note: See TracChangeset for help on using the changeset viewer.