diff --git a/view/src/nsView.cpp b/view/src/nsView.cpp index 8645f4237eb..deff015d8a6 100644 --- a/view/src/nsView.cpp +++ b/view/src/nsView.cpp @@ -201,15 +201,19 @@ nsView::~nsView() MOZ_COUNT_DTOR(nsView); if (this == nsViewManager::GetViewFocusedBeforeSuppression()) { +#ifdef DEBUG_FOCUS_SUPPRESSION if (GetViewManager()->IsFocusSuppressed()) { printf("*** 0 INFO TODO [CPEARCE] destroying view focused before suppression, while suppressed\n"); } +#endif nsViewManager::SetViewFocusedBeforeSuppression(nsnull); } if (this == nsViewManager::GetCurrentlyFocusedView()) { +#ifdef DEBUG_FOCUS_SUPPRESSION if (GetViewManager()->IsFocusSuppressed()) { printf("*** 0 INFO TODO [CPEARCE] destroying view currently focused, while suppressed\n"); } +#endif nsViewManager::SetCurrentlyFocusedView(nsnull); } diff --git a/view/src/nsViewManager.cpp b/view/src/nsViewManager.cpp index e1b05eb7c0f..f484d2739fe 100644 --- a/view/src/nsViewManager.cpp +++ b/view/src/nsViewManager.cpp @@ -970,7 +970,9 @@ void nsViewManager::UnsuppressFocusEvents() if (GetViewFocusedBeforeSuppression()) { widget = GetViewFocusedBeforeSuppression()->GetWidget(); if (widget) { +#ifdef DEBUG_FOCUS_SUPPRESSION printf("*** 0 INFO TODO [CPEARCE] Unsuppressing, dispatching NS_LOSTFOCUS\n"); +#endif nsGUIEvent event(PR_TRUE, NS_LOSTFOCUS, widget); widget->DispatchEvent(&event, status); } @@ -982,7 +984,9 @@ void nsViewManager::UnsuppressFocusEvents() { widget = GetCurrentlyFocusedView()->GetWidget(); if (widget) { +#ifdef DEBUG_FOCUS_SUPPRESSION printf("*** 0 INFO TODO [CPEARCE] Unsuppressing, dispatching NS_GOTFOCUS\n"); +#endif nsGUIEvent event(PR_TRUE, NS_GOTFOCUS, widget); widget->DispatchEvent(&event, status); } @@ -1194,16 +1198,19 @@ NS_IMETHODIMP nsViewManager::DispatchEvent(nsGUIEvent *aEvent, nsEventStatus *aS default: { if (aEvent->message == NS_GOTFOCUS) { +#ifdef DEBUG_FOCUS_SUPPRESSION printf("*** 0 INFO TODO [CPEARCE] Focus changing%s\n", - (nsViewManager::IsFocusSuppressed() ? " while suppressed" : "")); + (nsViewManager::IsFocusSuppressed() ? " while suppressed" : "")); +#endif SetCurrentlyFocusedView(nsView::GetViewFor(aEvent->widget)); } if ((aEvent->message == NS_GOTFOCUS || aEvent->message == NS_LOSTFOCUS) && nsViewManager::IsFocusSuppressed()) { +#ifdef DEBUG_FOCUS_SUPPRESSION printf("*** 0 INFO TODO [CPEARCE] Suppressing %s\n", (aEvent->message == NS_GOTFOCUS ? "NS_GOTFOCUS" : "NS_LOSTFOCUS")); - +#endif break; }