Changeset 12673 in vbox for trunk/src/VBox/Debugger/VBoxDbgStatsQt4.cpp
- Timestamp:
- Sep 23, 2008 2:07:00 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/VBoxDbgStatsQt4.cpp
r12671 r12673 1250 1250 { 1251 1251 uint32_t iSelf = pParent->iSelf; 1252 pNode = pNode->pParent; 1253 if (!pNode) 1252 pParent = pParent->pParent; 1253 if (!pParent) 1254 { 1255 pNode = NULL; 1254 1256 break; 1255 if (iSelf + 1 < pNode->cChildren) 1257 } 1258 if (iSelf + 1 < pParent->cChildren) 1256 1259 { 1257 pNode = p Node->papChildren[iSelf + 1];1260 pNode = pParent->papChildren[iSelf + 1]; 1258 1261 break; 1259 1262 }
Note:
See TracChangeset
for help on using the changeset viewer.