From: Murray Cumming Date: Thu, 6 Dec 2012 13:52:48 +0000 (+0100) Subject: tests: Avoid deprecated += signal connection syntax X-Git-Tag: RYGEL_0_17_5~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=193ca60688a8f47e93a2f76f28d9d20a7132e3a2;p=profile%2Fivi%2Frygel.git tests: Avoid deprecated += signal connection syntax --- 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); } }