Hi Eike, On Thu, 2008-02-07 at 14:35 +0100, Eike Rathke wrote: > Hi, > > I resynced CWS odff to m244. Please submit any future patches to > interpr*.cxx or compiler.cxx or token.cxx and related as a diff based on > that CWS until it will be integrated to the master.
I just had a minor build issue on Linux with gcc 4.1.2. The attached patch fixed it. It is apparently related to the visibility of vector and for_each under the std namespace. I had to explicitly declare them into the current file scope to get past the compiler error. Hope this helps someone in case he/she encounters the same problem. Kohei -- Kohei Yoshida - OpenOffice.org Engineer - Novell, Inc. <[EMAIL PROTECTED]>
Index: sc/source/ui/Accessibility/AccessibleDocument.cxx =================================================================== RCS file: /cvs/sc/sc/source/ui/Accessibility/AccessibleDocument.cxx,v retrieving revision 1.71 diff -u -r1.71 AccessibleDocument.cxx --- sc/source/ui/Accessibility/AccessibleDocument.cxx 5 Mar 2007 14:44:23 -0000 1.71 +++ sc/source/ui/Accessibility/AccessibleDocument.cxx 11 Feb 2008 15:30:45 -0000 @@ -150,6 +150,7 @@ using namespace ::com::sun::star; using namespace ::com::sun::star::accessibility; +using ::std::for_each; //===== internal ======================================================== Index: sc/source/ui/vba/vbarange.cxx =================================================================== RCS file: /cvs/sc/sc/source/ui/vba/vbarange.cxx,v retrieving revision 1.5 diff -u -r1.5 vbarange.cxx --- sc/source/ui/vba/vbarange.cxx 14 Dec 2007 12:41:04 -0000 1.5 +++ sc/source/ui/vba/vbarange.cxx 11 Feb 2008 15:30:46 -0000 @@ -170,7 +170,7 @@ using namespace ::org::openoffice; using namespace ::com::sun::star; - +using ::std::vector; // * 1 point = 1/72 inch = 20 twips // * 1 inch = 72 points = 1440 twips
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
