To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91479
                 Issue #|91479
                 Summary|DEV300_m23: sw/source/filter/ww8/ww8par3.cxx contains 
                        |typo
               Component|porting
                 Version|DEV300m22
                Platform|Unknown
                     URL|
              OS/Version|All
                  Status|NEW
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|DEFECT
                Priority|P3
            Subcomponent|code
             Assigned to|mh
             Reported by|milek_pl





------- Additional comments from [EMAIL PROTECTED] Tue Jul  8 20:56:14 +0000 
2008 -------
A revision of ww8par3.cxx introduced a typo in line 647:

myIterk aIter = remove(aOfsNumsXCH.begin(), aOfsNumsXCH.end(), 0);

whereas in the file, myIter is used.

Moreover, the conditional statement

#if defined(_MSC_VER) && (_MSC_VER > 1310) && (_MSC_VER < 1500)
    myIter aIter = remove(aOfsNumsXCH.begin(), aOfsNumsXCH.end(), 0);
#else
    myIter aIter = std::remove(aOfsNumsXCH.begin(), aOfsNumsXCH.end(), 0);
#endif

doesn't work in Visual C++ Express Edition 2005. VCEE 2005 needs std::remove, so
another parameter should be added to the if clause (don't know which, sorry).

---------------------------------------------------------------------
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