MCPcopy Create free account
hub / github.com/dhewm/dhewm3 / UpdateWatch

Method UpdateWatch

neo/tools/debugger/DebuggerWindow.cpp:718–731  ·  view source on GitHub ↗

================ rvDebuggerWindow::UpdateWatch Updates the contents of the watch window ================ */

Source from the content-addressed store, hash-verified

716================
717*/
718void rvDebuggerWindow::UpdateWatch ( void )
719{
720 int i;
721
722 // Inspect all the variables we are watching
723 for ( i = 0; i < mWatches.Num(); i ++ )
724 {
725 mWatches[i]->mModified = false;
726 mClient->InspectVariable ( mWatches[i]->mVariable, mCurrentStackDepth );
727 }
728
729 InvalidateRect ( mWndWatch, NULL, FALSE );
730 UpdateWindow ( mWndWatch );
731}
732
733/*
734================

Callers 1

WndProcMethod · 0.80

Calls 2

InspectVariableMethod · 0.80
NumMethod · 0.45

Tested by

no test coverage detected