From 977db2b5956e8fe201ca00a586312e076a98b1cf Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Mon, 4 Jul 2011 16:50:37 +0000 Subject: [PATCH] Add clarifying comment. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42375 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../debugger/user_interface/gui/team_window/VariablesView.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp b/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp index 73a8dcd3cf..265f3b2368 100644 --- a/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp @@ -1077,6 +1077,10 @@ VariablesView::VariableTableModel::_AddNode(Variable* variable, == TYPE_ADDRESS && nodeChildRawType->Kind() == TYPE_COMPOUND) { node->SetHidden(true); + + // we need to tell the listener about nodes like this so any + // necessary actions can be taken for them (i.e. value resolution), + // since they're otherwise invisible to outsiders. NotifyNodeHidden(node); } }