| 712 | //----------------------------------------------------------------------------- |
| 713 | |
| 714 | GuiTreeViewCtrl::Item* GuiTreeViewCtrl::Item::findChildByName( const char* name ) |
| 715 | { |
| 716 | Item* child = mChild; |
| 717 | while( child ) |
| 718 | { |
| 719 | if( dStricmp( child->mScriptInfo.mText, name ) == 0 ) |
| 720 | return child; |
| 721 | |
| 722 | child = child->mNext; |
| 723 | } |
| 724 | |
| 725 | return NULL; |
| 726 | } |
| 727 | |
| 728 | //----------------------------------------------------------------------------- |
| 729 |
no test coverage detected