From 1505999f5abfb6d69a84a5b4613316b7bd784634 Mon Sep 17 00:00:00 2001 From: Raphael Quinet Date: Tue, 13 Feb 2007 17:23:58 +0000 Subject: [PATCH] fix function prototype for when libhal is not available. 2007-02-13 Raphael Quinet * modules/gimpinputdevicestore.c (gimp_input_device_store_new): fix function prototype for when libhal is not available. svn path=/trunk/; revision=21914 --- ChangeLog | 5 +++++ modules/gimpinputdevicestore.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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; }