summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Ådahl <jadahl@gmail.com>2014-02-10 23:35:58 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2014-05-28 10:20:13 +0100
commit3da27a4f084b2cf8664a3a2ba6c3ca66f20807de (patch)
treed30349b40979b12eb2d58ec9e32d9c7c89bcbc2a
parented538a6d2c4cad2dcdd00353ded049a6c371b08b (diff)
downloadclutter-3da27a4f084b2cf8664a3a2ba6c3ca66f20807de.tar.gz
wayland: Fix coding style issues
Signed-off-by: Jonas Ådahl <jadahl@gmail.com> https://bugzilla.gnome.org/show_bug.cgi?id=723560
-rw-r--r--clutter/wayland/clutter-input-device-wayland.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/clutter/wayland/clutter-input-device-wayland.c b/clutter/wayland/clutter-input-device-wayland.c
index 1dc6c7c39..a3c9c1958 100644
--- a/clutter/wayland/clutter-input-device-wayland.c
+++ b/clutter/wayland/clutter-input-device-wayland.c
@@ -86,10 +86,10 @@ clutter_wayland_handle_motion (void *data,
event = clutter_event_new (CLUTTER_MOTION);
event->motion.stage = stage_cogl->wrapper;
event->motion.device = CLUTTER_INPUT_DEVICE (device);
- event->motion.time = _clutter_wayland_get_time();
+ event->motion.time = _clutter_wayland_get_time ();
event->motion.modifier_state = 0;
- event->motion.x = wl_fixed_to_double(x);
- event->motion.y = wl_fixed_to_double(y);
+ event->motion.x = wl_fixed_to_double (x);
+ event->motion.y = wl_fixed_to_double (y);
device->x = event->motion.x;
device->y = event->motion.y;
@@ -122,7 +122,7 @@ clutter_wayland_handle_button (void *data,
event = clutter_event_new (type);
event->button.stage = stage_cogl->wrapper;
event->button.device = CLUTTER_INPUT_DEVICE (device);
- event->button.time = _clutter_wayland_get_time();
+ event->button.time = _clutter_wayland_get_time ();
event->button.x = device->x;
event->button.y = device->y;
_clutter_xkb_translate_state (event, device->xkb, 0);
@@ -173,7 +173,7 @@ clutter_wayland_handle_axis (void *data,
stage_cogl = device->pointer_focus;
event = clutter_event_new (CLUTTER_SCROLL);
- event->scroll.time = _clutter_wayland_get_time();
+ event->scroll.time = _clutter_wayland_get_time ();
event->scroll.stage = stage_cogl->wrapper;
event->scroll.direction = CLUTTER_SCROLL_SMOOTH;
event->scroll.x = device->x;
@@ -230,7 +230,7 @@ clutter_wayland_handle_keymap (void *data,
map_str = mmap (NULL, size, PROT_READ, MAP_SHARED, fd, 0);
if (map_str == MAP_FAILED)
{
- close(fd);
+ close (fd);
return;
}
@@ -248,7 +248,7 @@ clutter_wayland_handle_keymap (void *data,
return;
}
- device->xkb = xkb_state_new(keymap);
+ device->xkb = xkb_state_new (keymap);
xkb_map_unref (keymap);
if (!device->xkb)
{
@@ -309,7 +309,7 @@ clutter_wayland_handle_key (void *data,
(ClutterInputDevice *) device,
stage_cogl->wrapper,
device->xkb, 0,
- _clutter_wayland_get_time(),
+ _clutter_wayland_get_time (),
key, state);
_clutter_event_push (event, FALSE);
@@ -384,9 +384,9 @@ clutter_wayland_handle_pointer_enter (void *data,
event = clutter_event_new (CLUTTER_ENTER);
event->crossing.stage = stage_cogl->wrapper;
- event->crossing.time = _clutter_wayland_get_time();
- event->crossing.x = wl_fixed_to_double(x);
- event->crossing.y = wl_fixed_to_double(y);
+ event->crossing.time = _clutter_wayland_get_time ();
+ event->crossing.x = wl_fixed_to_double (x);
+ event->crossing.y = wl_fixed_to_double (y);
event->crossing.source = CLUTTER_ACTOR (stage_cogl->wrapper);
event->crossing.device = CLUTTER_INPUT_DEVICE (device);
@@ -447,7 +447,7 @@ clutter_wayland_handle_pointer_leave (void *data,
event = clutter_event_new (CLUTTER_LEAVE);
event->crossing.stage = stage_cogl->wrapper;
- event->crossing.time = _clutter_wayland_get_time();
+ event->crossing.time = _clutter_wayland_get_time ();
event->crossing.x = device->x;
event->crossing.y = device->y;
event->crossing.source = CLUTTER_ACTOR (stage_cogl->wrapper);