1
0
Fork 0

clutter: Fix ClutterInputDeviceTool:serial setter/getter

The argument is internally handled as a uint64, but only exposed in
API as guint.
This commit is contained in:
Carlos Garnacho 2016-07-21 21:20:08 +02:00
parent aa9b2c5494
commit a59170c09f
2 changed files with 2 additions and 2 deletions

View file

@ -136,7 +136,7 @@ clutter_input_device_tool_init (ClutterInputDeviceTool *tool)
*
* Since: 1.28
**/
guint
guint64
clutter_input_device_tool_get_serial (ClutterInputDeviceTool *tool)
{
ClutterInputDeviceToolPrivate *priv;

View file

@ -56,7 +56,7 @@ CLUTTER_AVAILABLE_IN_ALL
GType clutter_input_device_tool_get_type (void) G_GNUC_CONST;
CLUTTER_AVAILABLE_IN_ALL
guint clutter_input_device_tool_get_serial (ClutterInputDeviceTool *tool);
guint64 clutter_input_device_tool_get_serial (ClutterInputDeviceTool *tool);
CLUTTER_AVAILABLE_IN_ALL
ClutterInputDeviceToolType clutter_input_device_tool_get_tool_type (ClutterInputDeviceTool *tool);