diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-01-05 10:55:20 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2018-01-05 17:43:53 +0100 |
commit | 52bab68b384309d618b03373b247401c9bcfd3de (patch) | |
tree | 17facc8b34f71ddb2e687095d5b715142b7436ce /shell/source | |
parent | 4c82a3527df4687162bb2906ed5e78085c3516e9 (diff) |
Fix typos
Change-Id: If114b42912a98b85f1b64f87bdb1f64afd15c85e
Reviewed-on: https://gerrit.libreoffice.org/47457
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'shell/source')
-rw-r--r-- | shell/source/cmdmail/cmdmailsuppl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/cmdmail/cmdmailsuppl.cxx b/shell/source/cmdmail/cmdmailsuppl.cxx index 687bee4a09ff..8e4afb1b333d 100644 --- a/shell/source/cmdmail/cmdmailsuppl.cxx +++ b/shell/source/cmdmail/cmdmailsuppl.cxx @@ -234,7 +234,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const Reference< XSimpleMailM appendShellWord(aBuffer, xSimpleMailMessage->getRecipient(), false); } - // Append carbon copy receipients set in the message + // Append carbon copy recipients set in the message Sequence< OUString > aStringList = xSimpleMailMessage->getCcRecipient(); sal_Int32 n, nmax = aStringList.getLength(); for ( n = 0; n < nmax; n++ ) @@ -243,7 +243,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const Reference< XSimpleMailM appendShellWord(aBuffer, aStringList[n], false); } - // Append blind carbon copy receipients set in the message + // Append blind carbon copy recipients set in the message aStringList = xSimpleMailMessage->getBccRecipient(); nmax = aStringList.getLength(); for ( n = 0; n < nmax; n++ ) |