To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=34264





------- Additional comments from [EMAIL PROTECTED] Thu Jan 11 02:48:06 -0800 
2007 -------
Re: the comment from Mon May 8 07:31:58 -0800 2006 : The nLastSlash variable was
a leftover that isn't needed. The current patch we have in ooo-build trunk looks
like this:

--- shell/source/win32/simplemail/senddoc.cxx   2005-02-08 11:09:48.562500000 
+0530
+++ shell/source/win32/simplemail/senddoc.cxx   2005-02-09 13:59:06.140625000 
+0530
@@ -64,7 +64,7 @@
 #endif
 
 #ifndef _RTL_STRING_HXX_
-//#include <rtl/string.hxx>
+#include <rtl/string.hxx>
 #endif
 
 #ifndef INCLUDED_SIMPLEMAPI_HXX
@@ -99,6 +99,7 @@
     StringList_t gCc;
     StringList_t gBcc;
     StringList_t gAttachments;
+       StringList_t gAttachFilenames;
     int gMapiFlags = 0;
 }
 
@@ -172,7 +173,11 @@
     {
         MapiFileDesc mfd;
         ZeroMemory(&mfd, sizeof(mfd));
+
         mfd.lpszPathName = const_cast<char*>(iter->c_str());    
+               rtl::OString aFullPath( mfd.lpszPathName );
+               gAttachFilenames.push_back( (const sal_Char *) aFullPath );
+               mfd.lpszFileName = 
const_cast<char*>(gAttachFilenames.back().c_str());    
         mfd.nPosition = sal::static_int_cast<ULONG>(-1);
         pMapiAttachmentList->push_back(mfd);        
     }            


---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to