From 193ca60688a8f47e93a2f76f28d9d20a7132e3a2 Mon Sep 17 00:00:00 2001 From: Murray Cumming Date: Thu, 6 Dec 2012 14:52:48 +0100 Subject: [PATCH] tests: Avoid deprecated += signal connection syntax --- tests/rygel-http-response-test.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rygel-http-response-test.vala b/tests/rygel-http-response-test.vala index d9e0c35..c87fc2c 100644 --- a/tests/rygel-http-response-test.vala +++ b/tests/rygel-http-response-test.vala @@ -239,7 +239,7 @@ public class Rygel.HTTPClient : GLib.Object, StateMachine { if (active) { this.cancellable = new Cancellable (); - this.cancellable.cancelled += this.on_cancelled; + this.cancellable.cancelled.connect (this.on_cancelled); } } -- 2.7.4