| 204 | } |
| 205 | |
| 206 | void VarOrderMapper::SetSimpleColName(int pos, int time, |
| 207 | const wxString& new_name) |
| 208 | { |
| 209 | if (time < 0 || pos < 0 || pos >= var_grps.size()) return; |
| 210 | VarGroup_container::iterator i = FindVarGroupIt(pos); |
| 211 | if (time >= i->GetNumTms()) return; |
| 212 | i->SetVarName(new_name, time); |
| 213 | } |
| 214 | |
| 215 | void VarOrderMapper::SetDisplayedDecimals(int pos, int disp_decs) |
| 216 | { |
nothing calls this directly
no test coverage detected