| 227 | //----------------------------------------------------------------------------- |
| 228 | |
| 229 | bool SFXEnvironment::preload( bool server, String& errorStr ) |
| 230 | { |
| 231 | if( !Parent::preload( server, errorStr ) ) |
| 232 | return false; |
| 233 | |
| 234 | validate(); |
| 235 | |
| 236 | return true; |
| 237 | } |
| 238 | |
| 239 | //----------------------------------------------------------------------------- |
| 240 |
nothing calls this directly
no test coverage detected