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:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user