| 1445 | } |
| 1446 | |
| 1447 | int ImGuiStorage::GetInt(ImGuiID key, int default_val) const |
| 1448 | { |
| 1449 | ImVector<Pair>::iterator it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); |
| 1450 | if (it == Data.end() || it->key != key) |
| 1451 | return default_val; |
| 1452 | return it->val_i; |
| 1453 | } |
| 1454 | |
| 1455 | bool ImGuiStorage::GetBool(ImGuiID key, bool default_val) const |
| 1456 | { |
no test coverage detected