Files
gimp/libgimpwidgets
Niels De Graef 65b12c108d libgimpwidgets: UnitStore: Fix conflicting names
`gimp_unit_store_get_value()` clashes with the `get_value()` method of
its parent class GtkTreeStore. This means trouble for bindings, as seen
here in some pseudocode:

```vala
var unit_store = new Gimp.UnitStore();
// Which function are we referencing here, the one from GtkTreeStore or
// the one from GimpUnitStore? Worse, they both have different arguments
unit_store.get_value( ... )
```
2020-05-10 12:06:33 +00:00
..
2020-01-06 21:52:54 +02:00
2020-05-04 21:31:30 +02:00
2020-05-08 17:11:14 +02:00
2020-05-03 17:57:23 +02:00
2019-08-13 11:50:51 -04:00