| 397 | } |
| 398 | |
| 399 | void GuiTextListCtrl::sortNumerical( U32 column, bool increasing ) |
| 400 | { |
| 401 | if ( getNumEntries() < 2 ) |
| 402 | return; |
| 403 | |
| 404 | sortColumn = column; |
| 405 | sIncreasing = increasing; |
| 406 | dQsort( (void*) &( mList[0] ), mList.size(), sizeof( Entry ), numCompare ); |
| 407 | } |
| 408 | |
| 409 | void GuiTextListCtrl::onRemove() |
| 410 | { |
no test coverage detected