| 881 | //----------------------------------------------------------------------------- |
| 882 | |
| 883 | bool SceneObject::_setSelectionEnabled( void *object, const char *index, const char *data ) |
| 884 | { |
| 885 | SceneObject* obj = reinterpret_cast< SceneObject* >( object ); |
| 886 | obj->setSelectionEnabled( dAtob( data ) ); |
| 887 | return false; |
| 888 | } |
| 889 | |
| 890 | //-------------------------------------------------------------------------- |
| 891 |
nothing calls this directly
no test coverage detected