1
0
Fork 0

ipa: Open the connection and then wait for the completion

This commit is contained in:
Holger Hans Peter Freyther 2011-06-20 09:45:43 +02:00
parent 91244510c6
commit 99841c28a6
1 changed files with 6 additions and 3 deletions

View File

@ -142,7 +142,8 @@ Object subclass: IPAConfig [
yourself
]
sendLU: aPhone [
(self doLU: aPhone) waitForTermination.
(self doLU: aPhone)
openConnection; waitForTermination.
]
doCallNumber: aPhone nr: aNr [
@ -152,7 +153,8 @@ Object subclass: IPAConfig [
]
callNumber: aPhone nr: aNumber [
^ (self doCallNumber: aPhone nr: aNumber) waitForTermination.
^ (self doCallNumber: aPhone nr: aNumber)
openConnection; waitForTermination.
]
doUSSD: aPhone nr: aNr [
@ -162,7 +164,8 @@ Object subclass: IPAConfig [
]
sendUSSD: aPhone nr: aNr [
^ (self doUSSD: aPhone nr: aNr) waitForTermination.
^ (self doUSSD: aPhone nr: aNr)
openConnection; waitForTermination.
]
]