| 736 | //----------------------------------------------------------------------------- |
| 737 | |
| 738 | bool SFXSource::_setDescription( void* obj, const char* index, const char* data ) |
| 739 | { |
| 740 | SFXSource* source = reinterpret_cast< SFXSource* >( obj ); |
| 741 | |
| 742 | source->mDescription = EngineUnmarshallData< SFXDescription* >()( data ); |
| 743 | if( !source->mDescription ) |
| 744 | { |
| 745 | Con::errorf( "SFXSource::_setDescription - No SFXDescription '%s'", data ); |
| 746 | return false; |
| 747 | } |
| 748 | |
| 749 | source->notifyDescriptionChanged(); |
| 750 | |
| 751 | return false; |
| 752 | } |
| 753 | |
| 754 | //----------------------------------------------------------------------------- |
| 755 |
nothing calls this directly
no test coverage detected