1
0
Fork 0

testphone: Return the GSMConnection to the caller sync calls

This commit is contained in:
Holger Hans Peter Freyther 2012-10-21 15:49:21 +02:00
parent e7191a921f
commit 345438106d
1 changed files with 4 additions and 4 deletions

View File

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