| 180 | } |
| 181 | |
| 182 | int CNodeBase::AddOpenClose( const PVIEWINFO View, int x, int y ) |
| 183 | { |
| 184 | if ((y > View->ClientRect->bottom) || (y + 16 < 0)) |
| 185 | return x + 16; |
| 186 | return m_LevelsOpen[View->Level] ? AddIcon( View, x, y, ICON_OPEN, 0, HS_OPENCLOSE ) : AddIcon( View, x, y, ICON_CLOSED, 0, HS_OPENCLOSE ); |
| 187 | } |
| 188 | |
| 189 | void CNodeBase::AddDelete( const PVIEWINFO View, int x, int y ) |
| 190 | { |
nothing calls this directly
no outgoing calls
no test coverage detected