Changeset 1615 for trunk/src/comctl32/propsheet.c
- Timestamp:
- Nov 5, 1999, 2:01:33 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/propsheet.c
r1565 r1615 1 /* $Id: propsheet.c,v 1.1 1 1999-11-02 21:44:02achimha Exp $ */1 /* $Id: propsheet.c,v 1.12 1999-11-05 13:01:33 achimha Exp $ */ 2 2 /* 3 3 * Property Sheets … … 890 890 PADDING_INFO padding; 891 891 892 TRACE("index %d\n", index);892 // TRACE("index %d\n", index); 893 893 894 894 if (ppshpage->dwFlags & PSP_DLGINDIRECT) … … 1051 1051 msgResult = SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &hdr); 1052 1052 1053 TRACE("msg result %ld\n", msgResult);1053 // TRACE("msg result %ld\n", msgResult); 1054 1054 1055 1055 if (msgResult == -1) … … 1082 1082 msgResult = SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &hdr); 1083 1083 1084 TRACE("msg result %ld\n", msgResult);1084 // TRACE("msg result %ld\n", msgResult); 1085 1085 1086 1086 if (msgResult != 0) … … 1522 1522 1523 1523 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); 1525 1525 return FALSE; 1526 1526 } … … 1537 1537 if (index < 0 || index >= psInfo->nPages) 1538 1538 { 1539 TRACE("Could not find page to remove!\n");1539 // TRACE("Could not find page to remove!\n"); 1540 1540 return FALSE; 1541 1541 } 1542 1542 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); 1545 1545 /* 1546 1546 * Check if we're removing the active page. … … 1563 1563 else 1564 1564 { 1565 TRACE("Removing the only page, close the dialog!\n");1565 // TRACE("Removing the only page, close the dialog!\n"); 1566 1566 1567 1567 if (psInfo->isModeless)
Note:
See TracChangeset
for help on using the changeset viewer.