diff --git a/ChangeLog b/ChangeLog index 7d7db97bb2..bbd7a17a8d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-02-13 Raphaƫl Quinet + + * modules/gimpinputdevicestore.c (gimp_input_device_store_new): + fix function prototype for when libhal is not available. + 2007-02-13 Sven Neumann * app/core/gimpimage-convert.c: update the progress less often. diff --git a/modules/gimpinputdevicestore.c b/modules/gimpinputdevicestore.c index fb1eabf746..af1cd9b6f3 100644 --- a/modules/gimpinputdevicestore.c +++ b/modules/gimpinputdevicestore.c @@ -449,8 +449,8 @@ gimp_input_device_store_get_type (GTypeModule *module) return G_TYPE_NONE; } -GtkListStore * -gimp_input_device_store_new (GError **error) +GimpInputDeviceStore * +gimp_input_device_store_new (void) { return NULL; }