[haiku-commits] r42375 - haiku/trunk/src/apps/debugger/user_interface/gui/team_window

  • From: anevilyak@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 4 Jul 2011 18:50:38 +0200 (CEST)

Author: anevilyak
Date: 2011-07-04 18:50:37 +0200 (Mon, 04 Jul 2011)
New Revision: 42375
Changeset: https://dev.haiku-os.org/changeset/42375

Modified:
   
haiku/trunk/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
Log:
Add clarifying comment.



Modified: 
haiku/trunk/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
===================================================================
--- 
haiku/trunk/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp  
    2011-07-04 14:56:31 UTC (rev 42374)
+++ 
haiku/trunk/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp  
    2011-07-04 16:50:37 UTC (rev 42375)
@@ -1077,6 +1077,10 @@
                                == 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);
                }
        }


Other related posts:

  • » [haiku-commits] r42375 - haiku/trunk/src/apps/debugger/user_interface/gui/team_window - anevilyak