================ rvDebuggerWindow::UpdateWatch Updates the contents of the watch window ================ */
| 716 | ================ |
| 717 | */ |
| 718 | void 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 | ================ |
no test coverage detected