Revision ee048a93
| b/plugins/sms/gui/windows/sms-dialog.cpp | ||
|---|---|---|
| 296 | 296 |
window->show(); |
| 297 | 297 |
|
| 298 | 298 |
connect(window, SIGNAL(canceled()), sender, SLOT(cancel())); |
| 299 |
connect(sender, SIGNAL(canceled()), window, SLOT(reject())); |
|
| 299 | 300 |
|
| 300 | 301 |
connect(sender, SIGNAL(progress(QString,QString)), window, SLOT(addProgressEntry(QString,QString))); |
| 301 | 302 |
connect(sender, SIGNAL(finished(bool,QString,QString)), window, SLOT(progressFinished(bool,QString,QString))); |
| b/plugins/sms/sms-internal-sender.cpp | ||
|---|---|---|
| 76 | 76 |
if (!ok) |
| 77 | 77 |
{
|
| 78 | 78 |
emit finished(ok, entryIcon, entryMessage); |
| 79 |
emit canceled(); |
|
| 79 | 80 |
deleteLater(); |
| 80 | 81 |
} |
| 81 | 82 |
else |
| b/plugins/sms/sms-sender.h | ||
|---|---|---|
| 60 | 60 |
|
| 61 | 61 |
void progress(const QString &entryIcon, const QString &entryMessage); |
| 62 | 62 |
void finished(bool ok, const QString &entryIcon, const QString &entryMessage); |
| 63 |
void canceled(); |
|
| 63 | 64 |
|
| 64 | 65 |
}; |
| 65 | 66 |
|
Also available in: Unified diff