Re: [dev] error: stripped_parser.y: conflicts: 5 shift/reduce

2005-10-04 Thread Stephan Bergmann
xili wrote: Hi, I am trying to build OpenOffice under Windows platform. Source File is: OOo_2.0beta2_src.tar.gz My OS is : Windows XP with Service Pack 2 Compiler: MS visual studio 2003 Bison version: 1.875b(20030307-1) I met this problem:

[dev] warnings01: Windows no copy possible warnings

2005-10-04 Thread Nikolai Pretzell
Hi, warnings under Windows there exist the following four warnings: C4625: copy constructor could not be generated because a base class copy constructor is inaccessible C4626: assignment operator could not be generated because a base class assignment operator is inaccessible C4511:

Re: [dev] warnings01: Windows no copy possible warnings

2005-10-04 Thread Nikolai Pretzell
Nikolai Pretzell wrote: workaround when keeping the warnings The warnings can be work-arounded by declaring copy-constructor and assignment-operator explicitely private in every derived or containing class like this: class C : public Bcd {public:

Re: [dev] warnings01: Windows no copy possible warnings

2005-10-04 Thread Thorsten Behrens
Nikolai Pretzell [EMAIL PROTECTED] writes: [about another one of those MSVCC 'hey, you've just used a C++ language feature' warnings] So, my suggestion: let's switch off the windows warnings C4625, C4626, C4511, C4512. +1 -- Thorsten If you're not failing some of the time, you're not

Re: [dev] OO2 130 and OfficeBean

2005-10-04 Thread Joachim Lingner
Many thanks for the example. We will try to reproduce this issue and submit an issue if necessary. Joachim snpe wrote: On Friday 30 September 2005 03:21 pm, Joachim Lingner wrote: I am not sure if I understand. Does the example odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment

Re: [dev] warnings01: Windows no copy possible warnings

2005-10-04 Thread Stephan Bergmann
Nikolai Pretzell wrote: [...] Conclusion and suggestion = 1) The warnings don't give any additional information. Any attempt to copy such a class results in a compiler error anyway. The information is given when defining the class, not when using it, so the warning

Re: [dev] Automate export to PDF

2005-10-04 Thread Stephan Wunderlich - Sun Germany - ham02 - Hamburg
Hi Cameron, I want to be able to automate on a server the exporting of OpenDocuments to PDF. Can someone point me to resources that would help me in doing so? you could use the UNO API ... for example to store a given xTextDoc to pdf, the following java-snippet should be useful

Re: [dev] Automate export to PDF

2005-10-04 Thread Robert Vojta
On Fri, 2005-09-30 at 11:34 +1000, Cameron Zemek wrote: Hi Cameron, I want to be able to automate on a server the exporting of OpenDocuments to PDF. Can someone point me to resources that would help me in doing so? I wrote a simple shell script with one BASIC macro for automated conversion