From 3ede17cc13927755729c92706b0d39a1d85cd697 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 24 Jun 2011 16:49:56 +0200 Subject: [PATCH] callagent: Fix the creation of the trunk --- callagent/MGCPTrunk.st | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/callagent/MGCPTrunk.st b/callagent/MGCPTrunk.st index 52d8351..b70b7bb 100644 --- a/callagent/MGCPTrunk.st +++ b/callagent/MGCPTrunk.st @@ -21,9 +21,9 @@ Object subclass: MGCPTrunkBase [ - MGCPTrunkBase class >> initialize [ + MGCPTrunkBase class >> new [ - ^ self new + ^ super new initialize; yourself ]