| 105 | void GraphView::OnGraphModified( BaseGraph* pModifiedGraph ) |
| 106 | { |
| 107 | // If this is the currently viewed graph, trigger the show graph flow since we might have added or removed nodes |
| 108 | if ( pModifiedGraph == m_pGraph ) |
| 109 | { |
| 110 | m_pGraph->OnShowGraph(); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | //------------------------------------------------------------------------- |
| 115 | |
| 116 | void GraphView::SetGraphToView( BaseGraph* pGraph, bool tryMaintainSelection ) |
| 117 | { |
nothing calls this directly
no test coverage detected