mirror of
https://github.com/brl/mutter.git
synced 2024-12-24 12:02:04 +00:00
[clutter-event-win32] Fix the argument types to clutter_actor_get_size
clutter_actor_get_size now takes float pointers so it was issuing a warning.
This commit is contained in:
parent
f89ff7f383
commit
af68945486
@ -359,7 +359,7 @@ message_translate (ClutterBackend *backend,
|
||||
{
|
||||
WORD new_width = LOWORD (msg->lParam);
|
||||
WORD new_height = HIWORD (msg->lParam);
|
||||
guint old_width, old_height;
|
||||
gfloat old_width, old_height;
|
||||
|
||||
clutter_actor_get_size (CLUTTER_ACTOR (stage),
|
||||
&old_width, &old_height);
|
||||
|
Loading…
Reference in New Issue
Block a user