diff options
author | MattV <[email protected]> | 2009-06-15 13:53:02 +1000 |
---|---|---|
committer | MattV <[email protected]> | 2009-06-15 13:53:02 +1000 |
commit | 27b0617fc1fae6ea8ae0d04526e3833a7c1c775c (patch) | |
tree | 10b40135bcda986b650bc7a2dda4354beacaabea /src/plugins/viewers/generic/genericviewer.cpp | |
parent | 2283f86f691ba6862dd48db01e6b91267c695073 (diff) |
Allow a message part to be forwarded without prior download.
Diffstat (limited to 'src/plugins/viewers/generic/genericviewer.cpp')
-rw-r--r-- | src/plugins/viewers/generic/genericviewer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/viewers/generic/genericviewer.cpp b/src/plugins/viewers/generic/genericviewer.cpp index f5350aa2..7a97349c 100644 --- a/src/plugins/viewers/generic/genericviewer.cpp +++ b/src/plugins/viewers/generic/genericviewer.cpp @@ -182,6 +182,7 @@ void GenericViewer::linkClicked(const QUrl& link) attachmentDialog->setAttachment(message->partAt(partLocation)); connect(attachmentDialog, SIGNAL(retrieve(QMailMessagePart)), this, SIGNAL(retrieveMessagePart(QMailMessagePart))); connect(attachmentDialog, SIGNAL(retrievePortion(QMailMessagePart, uint)), this, SIGNAL(retrieveMessagePartPortion(QMailMessagePart, uint))); + connect(attachmentDialog, SIGNAL(respondToPart(QMailMessagePart::Location, QMailMessage::ResponseType)), this, SIGNAL(respondToMessagePart(QMailMessagePart::Location, QMailMessage::ResponseType))); connect(attachmentDialog, SIGNAL(finished(int)), this, SLOT(dialogFinished(int))); attachmentDialog->exec(); |