| 1109 | //----------------------------------------------------------------------------- |
| 1110 | |
| 1111 | void SFXSystem::notifyDescriptionChanged( SFXDescription* description ) |
| 1112 | { |
| 1113 | SimSet* set = Sim::getSFXSourceSet(); |
| 1114 | for( SimSet::iterator iter = set->begin(); iter != set->end(); ++ iter ) |
| 1115 | { |
| 1116 | SFXSource* source = dynamic_cast< SFXSource* >( *iter ); |
| 1117 | if( source && source->getDescription() == description ) |
| 1118 | source->notifyDescriptionChanged(); |
| 1119 | } |
| 1120 | } |
| 1121 | |
| 1122 | //----------------------------------------------------------------------------- |
| 1123 |
no test coverage detected