Ignore:
Timestamp:
Nov 5, 1999, 2:01:33 PM (26 years ago)
Author:
achimha
Message:

source code cleanup, remove warnings

File:
1 edited

Legend:

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

    r1565 r1615  
    1 /* $Id: propsheet.c,v 1.11 1999-11-02 21:44:02 achimha Exp $ */
     1/* $Id: propsheet.c,v 1.12 1999-11-05 13:01:33 achimha Exp $ */
    22/*
    33 * Property Sheets
     
    890890  PADDING_INFO padding;
    891891
    892   TRACE("index %d\n", index);
     892//  TRACE("index %d\n", index);
    893893
    894894  if (ppshpage->dwFlags & PSP_DLGINDIRECT)
     
    10511051  msgResult = SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &hdr);
    10521052
    1053   TRACE("msg result %ld\n", msgResult);
     1053//  TRACE("msg result %ld\n", msgResult);
    10541054
    10551055  if (msgResult == -1)
     
    10821082  msgResult = SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &hdr);
    10831083
    1084   TRACE("msg result %ld\n", msgResult);
     1084//  TRACE("msg result %ld\n", msgResult);
    10851085
    10861086  if (msgResult != 0)
     
    15221522
    15231523  if (!psInfo) {
    1524     FIXME("No psInfo for propertysheet at windows 0x%04x, returning FALSE...\n", hwndDlg);
     1524//    FIXME("No psInfo for propertysheet at windows 0x%04x, returning FALSE...\n", hwndDlg);
    15251525    return FALSE;
    15261526  }
     
    15371537  if (index < 0 || index >= psInfo->nPages)
    15381538    {
    1539       TRACE("Could not find page to remove!\n");
     1539//      TRACE("Could not find page to remove!\n");
    15401540      return FALSE;
    15411541    }
    15421542
    1543   TRACE("total pages %d removing page %d active page %d\n",
    1544         psInfo->nPages, index, psInfo->active_page);
     1543//  TRACE("total pages %d removing page %d active page %d\n",
     1544//        psInfo->nPages, index, psInfo->active_page);
    15451545  /*
    15461546   * Check if we're removing the active page.
     
    15631563    else
    15641564    {
    1565       TRACE("Removing the only page, close the dialog!\n");
     1565//      TRACE("Removing the only page, close the dialog!\n");
    15661566
    15671567      if (psInfo->isModeless)
Note: See TracChangeset for help on using the changeset viewer.