Re: [dev] developing with Windows

2008-03-28 Thread Tor Lillqvist
with the UNO C++ API you can Write Once, Build Anywhere Assuming you have access to a (cross-) toolchain for that elusive Anywhere architecture that your potential customer uses, of course. And, assuming you managed to keep your C++ clean enough that the Anywhere compiler accepts it, that you

Re: [dev] developing with Windows

2008-03-28 Thread Tor Lillqvist
Also I am using dev-c++(gcc.) Don't. I have never heard of any serious developer using dev-c++. Plain makefiles, a separate editor, possibly GNU autotools etc, yes. (But no auto* are involved in the OOo context.) Unfortunately, for Windows, the only supported compiler one can use for OOo

[dev] drop configimport?

2008-03-28 Thread Stephan Bergmann
Are there any objections against dropping the configimport tool from OOo 3.0? It seems that its typical uses (if any) can also be achieved with other means (see http://www.openoffice.org/issues/show_bug.cgi?id=87512), so we can lose some weight here. -Stephan

Re: [dev] drop configimport?

2008-03-28 Thread Thorsten Behrens
On Fri, Mar 28, 2008 at 09:55:39AM +0100, Stephan Bergmann wrote: Are there any objections against dropping the configimport tool from OOo 3.0? It seems that its typical uses (if any) can also be achieved with other means [...] Hi Stephan, while I don't think you can get away with simply

Re: [dev] Import settings from OOo 2.x into OOo 3.0

2008-03-28 Thread Mathias Bauer
Michele wrote: Hello, I hope this is the right list for such question. I am testing OOo DEV300_m4 and it created, quite rightly a .openoffice.org3 directory. Can I just copy and across my .openoffice.org2/user directory contents or am I going to mess up some new settings? The

[dev] getting started

2008-03-28 Thread Mai Ali
Dear Sir; I have planed a lot to participate in the development of open office, and I think that its now the time, but I don't know how to get started. I am a java developer and have good skills in C++. I think that I may help in coding help or code improvement. Hope that I could help,

[dev] NetBeans Tips and Tricks

2008-03-28 Thread Steffen Grund
Hello all, I just created a wiki page for NetBeans users to publish some tips and tricks around programming in Java for OpenOffice.org. Here it is: http://wiki.services.openoffice.org/wiki/NetBeans_Tips_and_Tricks Not much content right now, but there is a useful tip around avoiding to type

Re: [dev] developing with Windows

2008-03-28 Thread Ariel Constenla-Haile
Tor Lillqvist escribió: with the UNO C++ API you can Write Once, Build Anywhere Assuming you have access to a (cross-) toolchain for that elusive Anywhere architecture that your potential customer uses, of course. with the *elusive* Anywhere I meant: he says he wants to use OOo API, so I

Re: [dev] NetBeans Tips and Tricks

2008-03-28 Thread Ariel Constenla-Haile
Hi Steffen, Steffen Grund escribió: Hello all, I just created a wiki page for NetBeans users to publish some tips and tricks around programming in Java for OpenOffice.org. Here it is: http://wiki.services.openoffice.org/wiki/NetBeans_Tips_and_Tricks Not much content right now, but there is

Re: [dev] developing with Windows

2008-03-28 Thread Tor Lillqvist
and you can compile using the SDK environment anywhere the SDK is ported and working. Assuming you have access to such a machine, that is. That was my main point. With Java, Python or (I assume) Basic the extension you produce doesn't need to be rebuilt for each client platform. once