From 81f90cbd98c96f0c17dd64c72bb44e19b4d027c0 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Fri, 16 Jul 2010 15:11:04 -0500 Subject: [PATCH] user32: Don't dump structures of some ambiguous listview messages. This fixes the comctl32 datetime test when run with WINEDEBUG=+message. --- dlls/user32/spy.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/dlls/user32/spy.c b/dlls/user32/spy.c index 1ed768f..26bd741 100644 --- a/dlls/user32/spy.c +++ b/dlls/user32/spy.c @@ -2329,13 +2329,10 @@ static void SPY_DumpStructure(const SPY_INSTANCE *sp_e, BOOL enter) switch (sp_e->msgnum) { case LVM_INSERTITEMW: - case LVM_INSERTITEMA: case LVM_SETITEMW: - case LVM_SETITEMA: if (!enter) break; /* fall through */ case LVM_GETITEMW: - case LVM_GETITEMA: { LPLVITEMA item = (LPLVITEMA) sp_e->lParam; if (item) { -- 1.7.0.4