diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-06-21 14:16:57 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-06-21 14:16:57 +0000 |
commit | 289b34236196bd3196ace3260132522b4891bf07 (patch) | |
tree | 1df7175401276b0ceca4e5db74b2ac2ea8b67903 /shell/source/win32/simplemail/smplmailclient.cxx | |
parent | 3ec805d899af16c16e2aca70adb84928e1bccf6f (diff) |
#i10000#: for-scope
Diffstat (limited to 'shell/source/win32/simplemail/smplmailclient.cxx')
-rw-r--r-- | shell/source/win32/simplemail/smplmailclient.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/source/win32/simplemail/smplmailclient.cxx b/shell/source/win32/simplemail/smplmailclient.cxx index d09d1e4ad9c0..9810e8144ae6 100644 --- a/shell/source/win32/simplemail/smplmailclient.cxx +++ b/shell/source/win32/simplemail/smplmailclient.cxx @@ -2,9 +2,9 @@ * * $RCSfile: smplmailclient.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: rt $ $Date: 2004-06-17 15:43:56 $ + * last change: $Author: hr $ $Date: 2004-06-21 15:16:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -252,7 +252,7 @@ void CSmplMailClient::assembleCommandLine( } Sequence<rtl::OUString> bccRecipients = xSimpleMailMessage->getBccRecipient(); - for (i = 0; i < bccRecipients.getLength(); i++) + for (int i = 0; i < bccRecipients.getLength(); i++) { rCommandArgs.push_back(BCC); rCommandArgs.push_back(bccRecipients[i]); @@ -273,7 +273,7 @@ void CSmplMailClient::assembleCommandLine( } Sequence<rtl::OUString> attachments = xSimpleMailMessage->getAttachement(); - for (i = 0; i < attachments.getLength(); i++) + for (int i = 0; i < attachments.getLength(); i++) { rtl::OUString sysPath; osl::FileBase::RC err = osl::FileBase::getSystemPathFromFileURL(attachments[i], sysPath); |