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( ... )
```
This commit is contained in:
Niels De Graef
2019-08-20 18:21:45 +02:00
committed by Jehan
parent 25ecef0dc3
commit 65b12c108d
4 changed files with 7 additions and 7 deletions

View File

@ -716,7 +716,7 @@ gimp_unit_store_set_pixel_value
gimp_unit_store_set_pixel_values
gimp_unit_store_set_resolution
gimp_unit_store_set_resolutions
gimp_unit_store_get_value
gimp_unit_store_get_nth_value
gimp_unit_store_get_values
<SUBSECTION Standard>
GimpUnitStoreClass