summaryrefslogtreecommitdiff
path: root/wintable
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-02-15 15:37:16 -0500
committerPietro Gagliardi <[email protected]>2015-02-15 15:37:16 -0500
commit4769299fa8f06c33dedb742f9651638e736dc46e (patch)
treef8eb6344d9a86ee74394ebdfd278cf9f0a660944 /wintable
parentef1406fb3e4f692751f828c5ea76805fc86a3d71 (diff)
Removed leftover debugging printf()s.
Diffstat (limited to 'wintable')
-rw-r--r--wintable/accessibility.h6
1 files changed, 1 insertions, 5 deletions
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);