| 223 | } |
| 224 | |
| 225 | void GuiFileTreeCtrl::onItemSelected( Item *item ) |
| 226 | { |
| 227 | Con::executef( this, "onSelectPath", avar("%s",item->getValue()) ); |
| 228 | |
| 229 | mSelPath = item->getValue(); |
| 230 | if( _hasChildren( mSelPath ) ) |
| 231 | item->setVirtualParent( true ); |
| 232 | } |
| 233 | |
| 234 | bool GuiFileTreeCtrl::_setFileFilterValue( void *object, const char *index, const char *data ) |
| 235 | { |
nothing calls this directly
no test coverage detected