diff options
author | Rodolfo Ribeiro Gomes <rodolforg@gmail.com> | 2013-11-25 23:34:09 -0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-11-26 06:14:17 -0600 |
commit | eda8111fdf9b1c69935237106a73d1c53c2776e1 (patch) | |
tree | 56268d2bc6a23cca302b63ca73c4cf0149d3b0b1 | |
parent | 2f973aa90d508cd88050b0273634482de2174a08 (diff) |
Mailmerge shows wrong number of emails to be sent
The progress bar is ok, but the text is displayed with the total
number of registers instead of the amount selected to be used.
Change-Id: I81da0e7ba9f193366e12cbf81118e36a43bcaad4
Signed-off-by: Rodolfo Ribeiro Gomes <rodolforg@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/6810
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | sw/source/ui/dbui/mailmergechildwindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/dbui/mailmergechildwindow.cxx b/sw/source/ui/dbui/mailmergechildwindow.cxx index 682ab227f87e..c1dc07a8ec5c 100644 --- a/sw/source/ui/dbui/mailmergechildwindow.cxx +++ b/sw/source/ui/dbui/mailmergechildwindow.cxx @@ -648,7 +648,7 @@ void SwSendMailDialog::UpdateTransferStatus() { OUString sStatus( m_sTransferStatus ); sStatus = sStatus.replaceFirst("%1", OUString::number(m_nSendCount) ); - sStatus = sStatus.replaceFirst("%2", OUString::number(m_pImpl->nDocumentCount)); + sStatus = sStatus.replaceFirst("%2", OUString::number(m_pImpl->aDescriptors.size())); m_aTransferStatusFT.SetText(sStatus); sStatus = m_sErrorStatus.replaceFirst("%1", OUString::number(m_nErrorCount) ); |