From 4bf83bb5238fa634f26cde1fe2b3d46ff855da92 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 20 Jun 2014 14:35:35 +0200 Subject: [PATCH] call: Fix typo in the selector name --- callagent/session/SIPCall.st | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/callagent/session/SIPCall.st b/callagent/session/SIPCall.st index 58f0b7f..4884ff8 100644 --- a/callagent/session/SIPCall.st +++ b/callagent/session/SIPCall.st @@ -43,6 +43,11 @@ will simply ignore everything but the first dialog.'> ] SIPCall class >> fromIdenity: aUser identity: anIdentity host: aHost port: aPort to: aTo on: aUseragent [ + "Remove in a year! 20150620" + ^self fromIdentity: aUser identity: anIdentity host: aHost port: aPort to: aTo on: aUseragent + ] + + SIPCall class >> fromIdentity: aUser identity: anIdentity host: aHost port: aPort to: aTo on: aUseragent [ ^ self on: ((SIPDialog fromUser: aUser host: aHost port: aPort) to: aTo; identity: anIdentity; yourself) useragent: aUseragent