| 157 | } |
| 158 | |
| 159 | void CSoundGen::AssignView(CFamiTrackerView *pView) |
| 160 | { |
| 161 | // Called from main thread |
| 162 | ASSERT(GetCurrentThreadId() == FTEnv.GetMainApp()->m_nThreadID); |
| 163 | |
| 164 | if (m_pTrackerView != NULL) |
| 165 | return; |
| 166 | |
| 167 | // Assigns the tracker view to this object |
| 168 | m_pTrackerView = pView; |
| 169 | } |
| 170 | |
| 171 | void CSoundGen::RemoveDocument() |
| 172 | { |
no test coverage detected