| 93 | } |
| 94 | |
| 95 | void VarTableModel::clear() { |
| 96 | beginResetModel(); |
| 97 | vars.clear(); |
| 98 | endResetModel(); |
| 99 | } |
| 100 | |
| 101 | static bool varLess(const calc_var_t &var, const calc_var_t &other) { |
| 102 | return calc_var_compare_names(&var, &other) < 0; |
nothing calls this directly
no outgoing calls
no test coverage detected