| 1002 | } |
| 1003 | |
| 1004 | void Project::GetSelectedRows(std::vector<int>& rowids) |
| 1005 | { |
| 1006 | rowids.clear(); |
| 1007 | int n_rows = GetNumRecords(); |
| 1008 | std::vector<bool>& hs = highlight_state->GetHighlight(); |
| 1009 | for ( int i=0; i<n_rows; i++ ) { |
| 1010 | if (hs[i] ) rowids.push_back(i); |
| 1011 | } |
| 1012 | } |
| 1013 | |
| 1014 | wxGrid* Project::FindTableGrid() |
| 1015 | { |
no test coverage detected