From 4769299fa8f06c33dedb742f9651638e736dc46e Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 15 Feb 2015 15:37:16 -0500 Subject: Removed leftover debugging printf()s. --- wintable/accessibility.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'wintable/accessibility.h') diff --git a/wintable/accessibility.h b/wintable/accessibility.h index a9f07f0..7290ea2 100644 --- a/wintable/accessibility.h +++ b/wintable/accessibility.h @@ -4,7 +4,7 @@ // - make sure E_POINTER and RPC_E_DISCONNECTED are correct returns for IAccessible // uncomment this to debug table linked list management -#define TABLE_DEBUG_LINKEDLIST +//#define TABLE_DEBUG_LINKEDLIST // TODO get rid of this typedef struct tableAccWhat tableAccWhat; @@ -506,7 +506,6 @@ static struct tableAcc *newTableAcc(struct table *t, LONG role, intptr_t row, in IAccessible *std; ta = (struct tableAcc *) tableAlloc(sizeof (struct tableAcc), "error creating Table accessibility object"); -printf("new ta %p\n", ta); ta->vtbl = &tableAccVtbl; ta->refcount = 1; ta->t = t; @@ -561,11 +560,8 @@ HANDLER(accessibilityHandler) // (As you can probably tell, the biggest problem with MSAA is that its documentation is ambiguous and/or self-contradictory...) if (((DWORD) lParam) != ((DWORD) OBJID_CLIENT)) return FALSE; -printf("creating ta\n"); ta = newTableAcc(t, ROLE_SYSTEM_TABLE, -1, -1); -printf("ta %p\n", ta); *lResult = LresultFromObject(&IID_IAccessible, wParam, (LPUNKNOWN) (ta)); -printf("lResult %I32d\n", *lResult); // TODO check *lResult // TODO adjust pointer IAccessible_Release((IAccessible *) ta); -- cgit v1.2.3