| 136 | //----------------------------------------------------------------------------- |
| 137 | |
| 138 | bool SFXTrack::preload( bool server, String& errorStr ) |
| 139 | { |
| 140 | if( !Parent::preload( server, errorStr ) ) |
| 141 | return false; |
| 142 | |
| 143 | if( !server ) |
| 144 | { |
| 145 | if( !sfxResolve( &mDescription, errorStr ) ) |
| 146 | return false; |
| 147 | } |
| 148 | |
| 149 | return true; |
| 150 | } |
| 151 | |
| 152 | //----------------------------------------------------------------------------- |
| 153 |
nothing calls this directly
no test coverage detected