author | dwmw2 <dwmw2> | 2002-04-04 14:12:32 (UTC) |
---|---|---|
committer | dwmw2 <dwmw2> | 2002-04-04 14:12:32 (UTC) |
commit | 27602da5cda073d9f0fbcd97a62897b8a4addcdc (patch) (unidiff) | |
tree | 6c358019ae957ce760b59b1d94040b659c4b5783 | |
parent | d3ef7996a0c857451395fcdd2eed63399100586a (diff) | |
download | opie-27602da5cda073d9f0fbcd97a62897b8a4addcdc.zip opie-27602da5cda073d9f0fbcd97a62897b8a4addcdc.tar.gz opie-27602da5cda073d9f0fbcd97a62897b8a4addcdc.tar.bz2 |
no cout.
-rw-r--r-- | noncore/unsupported/gsmtool/gsmtool.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/noncore/unsupported/gsmtool/gsmtool.cpp b/noncore/unsupported/gsmtool/gsmtool.cpp index 6fea596..e6122ad 100644 --- a/noncore/unsupported/gsmtool/gsmtool.cpp +++ b/noncore/unsupported/gsmtool/gsmtool.cpp | |||
@@ -288,11 +288,7 @@ void GSMTool::doNewSMSSendButton() | |||
288 | SMSSubmitMessage m(msgtext, dest); | 288 | SMSSubmitMessage m(msgtext, dest); |
289 | try { | 289 | try { |
290 | Ref<SMSMessage> ackPDU; | ||
291 | m.setAt(new GsmAt(*me)); | 290 | m.setAt(new GsmAt(*me)); |
292 | m.send(ackPDU); | 291 | m.send(); |
293 | 292 | ||
294 | // print acknowledgement if available | ||
295 | if (! ackPDU.isnull()) | ||
296 | cout << ackPDU->toString(); | ||
297 | NewSMSStatusLabel->setText("Message sent."); | 293 | NewSMSStatusLabel->setText("Message sent."); |
298 | } catch (GsmException &ge) { | 294 | } catch (GsmException &ge) { |