| 105 | } |
| 106 | |
| 107 | void Begin() |
| 108 | { |
| 109 | if (count_columns == 0) |
| 110 | return; |
| 111 | size_t count = original_list->getItemCount(); |
| 112 | if (count == 0) |
| 113 | return; |
| 114 | |
| 115 | size_t index = (size_t)rand() % count; |
| 116 | original_list->setIndexSelected(index); |
| 117 | |
| 118 | checkMultiList(); |
| 119 | } |
| 120 | |
| 121 | void Begin(size_t _count) |
| 122 | { |
nothing calls this directly
no test coverage detected