| 211 | //----------------------------------------------------------------------------- |
| 212 | |
| 213 | bool SFXEnvironment::preload( bool server, String& errorStr ) |
| 214 | { |
| 215 | if( !Parent::preload( server, errorStr ) ) |
| 216 | return false; |
| 217 | |
| 218 | validate(); |
| 219 | |
| 220 | return true; |
| 221 | } |
| 222 | |
| 223 | //----------------------------------------------------------------------------- |
| 224 |
nothing calls this directly
no test coverage detected