-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 @@ -278,31 +278,27 @@ void GSMTool::doNewSMSSaveButton() void GSMTool::doNewSMSSendButton() { const char *msgtext = strdup(NewSMSText->text().local8Bit()); const char *dest = NewSMSToBox->currentText().ascii(); NewSMSStatusLabel->setText("Sending..."); me->setMessageService(1); qDebug("NewSMSSendButton: '%s' to '%s'", msgtext, dest); SMSSubmitMessage m(msgtext, dest); try { - Ref<SMSMessage> ackPDU; m.setAt(new GsmAt(*me)); - m.send(ackPDU); + m.send(); - // print acknowledgement if available - if (! ackPDU.isnull()) - cout << ackPDU->toString(); NewSMSStatusLabel->setText("Message sent."); } catch (GsmException &ge) { NewSMSStatusLabel->setText("Failed."); qDebug(ge.what()); } free((void *)msgtext); } void GSMTool::doSMSDeleteButton() |