no assignment in if

This commit is contained in:
Tom Beckmann 2015-03-11 14:43:19 +01:00
parent 27b43cc32c
commit 1b4ec92676

View File

@ -235,9 +235,9 @@ namespace Gala
*/ */
public static Clutter.Actor? get_window_actor_snapshot (Meta.WindowActor actor, Meta.Rectangle inner_rect, Meta.Rectangle outer_rect) public static Clutter.Actor? get_window_actor_snapshot (Meta.WindowActor actor, Meta.Rectangle inner_rect, Meta.Rectangle outer_rect)
{ {
Meta.ShapedTexture? texture; var texture = actor.get_texture () as Meta.ShapedTexture;
if ((texture = actor.get_texture () as Meta.ShapedTexture) == null) if (texture == null)
return null; return null;
var surface = texture.get_image ({ var surface = texture.get_image ({