| 210 | } |
| 211 | |
| 212 | MaterialController* WorkspacePanel::getMaterial(wxTreeItemId id) |
| 213 | { |
| 214 | for(MaterialIdMap::iterator it = mMaterialIdMap.begin(); it != mMaterialIdMap.end(); ++it) |
| 215 | { |
| 216 | if(it->second == id) return it->first; |
| 217 | } |
| 218 | |
| 219 | return NULL; |
| 220 | } |
| 221 | |
| 222 | TechniqueController* WorkspacePanel::getTechnique(wxTreeItemId id) |
| 223 | { |
no test coverage detected