| 207 | } |
| 208 | |
| 209 | size_t PropertiesPanelView::getIndexPanel(PanelProperties* _panel) |
| 210 | { |
| 211 | for (size_t index = 0; index < mPanelView->getItemCount(); ++index) |
| 212 | { |
| 213 | if (mPanelView->getItem(index) == _panel) |
| 214 | return index; |
| 215 | } |
| 216 | return MyGUI::ITEM_NONE; |
| 217 | } |
| 218 | |
| 219 | } |
nothing calls this directly
no test coverage detected