To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=75203
------- Additional comments from [EMAIL PROTECTED] Tue Mar 13 12:31:08 +0000 2007 ------- After some long and painful debugging sessions I think I have found the root for the problem: This kind of record in a PPT file which asks for the current date/time with a specified format (which in this case happens to only contain quoted characters even, no actual date format specifiers) isn't implemented correctly at all. This happens in svx/source/svdraw/svdfppt.cxx, in PPTTextObj::PPTTextObj() around line 7000: case PPT_PST_RTFDateTimeMCAtom: pEntry->pField1 = new SvxFieldItem( SvxDateField( Date(), SVXDATETYPE_FIX ) ); break; The PPT_PST_RTFDateTimeMCAtom record that is being handled here also contains a 64 (wide) characters format string, but that isn't read and used at all. Apparently the SvxDateField class doesn't even offer the possibility to specify a format string, only a fixed set of date formats (the SvxDateFormat enum) is implemented. So it seems that this "Toyota" issue is just a special case of a more general problem. --------------------------------------------------------------------- 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]
