fix function prototype for when libhal is not available.

2007-02-13  Raphael Quinet  <raphael@gimp.org>

	* modules/gimpinputdevicestore.c (gimp_input_device_store_new):
	fix function prototype for when libhal is not available.

svn path=/trunk/; revision=21914
This commit is contained in:
Raphael Quinet 2007-02-13 17:23:58 +00:00 committed by Raphaël Quinet
parent 462b5e0b45
commit 1505999f5a
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2007-02-13 Raphaël Quinet <raphael@gimp.org>
* modules/gimpinputdevicestore.c (gimp_input_device_store_new):
fix function prototype for when libhal is not available.
2007-02-13 Sven Neumann <sven@gimp.org> 2007-02-13 Sven Neumann <sven@gimp.org>
* app/core/gimpimage-convert.c: update the progress less often. * app/core/gimpimage-convert.c: update the progress less often.

View file

@ -449,8 +449,8 @@ gimp_input_device_store_get_type (GTypeModule *module)
return G_TYPE_NONE; return G_TYPE_NONE;
} }
GtkListStore * GimpInputDeviceStore *
gimp_input_device_store_new (GError **error) gimp_input_device_store_new (void)
{ {
return NULL; return NULL;
} }