[dev] how to just install calc,impress and writer?

2008-07-09 Thread Cynthia Qu
hi,all My problem is I just want to install calc,impress,and writer on fedora8, but I don't know how to do that. What switches shall I use during the installing process? As I have successfully compiled oo3.0 on fedora8. After intallating, I find out that base, business

Re: [dev] current cursor position in XTable

2008-07-09 Thread Dinesh Chothe
XTextViewCursorSupplier xViewCursorSupplier = ( XTextViewCursorSupplier )UnoRuntime.queryInterface ( XTextViewCursorSupplier.class, xTextDocument ); For getting current position from current document I did as above. Now while doing this same for

[dev] Where to find debuggable versions of OpenOffice.org

2008-07-09 Thread Joerg Doll
Hi, in some cases it would be great to have an debugable version of an OpenOffice.org release (e.g 2.x.x) to clarify problems. When using the API of OOo (for example within an extension or an external java program) and OpenOffice.org crashes under misterious circumstances this could the best

Re: [dev] Where to find debuggable versions of OpenOffice.org

2008-07-09 Thread Philipp Lohmann
non product build != debuggable build a non product build contains no more debugging information than the product build; the non product build activates assertions (per default in the form of popping up dialog boxes) which may or may not hint problems. To build with debug info use build

Re: [dev] Where to find debuggable versions of OpenOffice.org

2008-07-09 Thread Caolan McNamara
On Wed, 2008-07-09 at 15:54 +0200, Philipp Lohmann wrote: non product build != debuggable build a non product build contains no more debugging information than the product build; the non product build activates assertions (per default in the form of popping up dialog boxes) which may or

Re: [dev] Where to find debuggable versions of OpenOffice.org

2008-07-09 Thread Terrence Enger
Please let me second Joerg's request for a debuggable download. My interest arises not from any mystery or suspicion of a problem in the OOo code but simply from a taste for using an interactive debugger as a tool for understanding the code. I think this habit is somewhat common. Is it possible

[dev] Trick for (1-x)^b for x near 1?

2008-07-09 Thread Regina Henschel
Hello, I'm working on the beta distribution for Calc. In the case BETADIST(x,1,b,0,1,FALSE()), which is the beta distribution density function, the term b*(1-x)^(b-1) has to be calculated. The domain for x is 0=x=1. There is no problem for x0.99. But you get large relative errors for x near

Re: [dev] Re: .odt Files Print From UI, Not From API Using Java

2008-07-09 Thread Andrew Douglas Pitonyak
So the problem is with one, and only one, computer The problem is with .odt files and Not with .sxw files... Is there anything special about her printer? - Is the printer local or networked? - Are you printing to the default printer, or a named printer? - Multiple output bins? - Can you

Re: [dev] current cursor position in XTable

2008-07-09 Thread Andrew Douglas Pitonyak
If only one cell is selected, then you can simply obtain the CurrentSelection property from the document. Things are more complicated if you must worry about multiple things being selected... it looks like you can also grab the selection property from the current controller. If you want only