aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-06-24 16:49:56 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-06-24 20:08:23 +0200
commit3ede17cc13927755729c92706b0d39a1d85cd697 (patch)
treef08f879bf77c9993fb023adefc075e869787ed6e
parentdc2a6faf2b853bc52029d7179cb6c1a93b071f48 (diff)
callagent: Fix the creation of the trunk
-rw-r--r--callagent/MGCPTrunk.st4
1 files 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 [
<comment: 'I represent a trunk for a Gateway'>
<category: 'MGCP-Callagent'>
- MGCPTrunkBase class >> initialize [
+ MGCPTrunkBase class >> new [
<category: 'creation'>
- ^ self new
+ ^ super new
initialize;
yourself
]