Re: [lazarus] Changing TObject

2007-03-21 Thread Marco van de Voort
On Wed, Mar 21, 2007 at 07:15:41AM +0300, Al Boldi wrote: (reserved in the VMT by the virtual directive), it doesn't create room. This is also why you can't override non virtual methods. Thanks for this very clear and to the point answer. Would it be possible to

Re: [lazarus] Changing TObject

2007-03-21 Thread Al Boldi
Marco van de Voort wrote: On Wed, Mar 21, 2007 at 07:15:41AM +0300, Al Boldi wrote: (reserved in the VMT by the virtual directive), it doesn't create room. This is also why you can't override non virtual methods. Thanks for this very clear and to the point answer.

Re: [lazarus] Changing TObject

2007-03-21 Thread Marco van de Voort
On Wed, Mar 21, 2007 at 02:26:06PM +0300, Al Boldi wrote: But what is exactly overriden in the object? In the case of a method it is clear. The code of that specific method is overridable. Override the whole object; consider this: TObject1 = class; This inherits the ancestor and

[lazarus] Managing Cross Platform Projects

2007-03-21 Thread Lee Jenkins
Hi all, I was wondering what other did to manage cross platform projects? The problem that I have is writing the project in on OS (Windows for the current project) and then compiling over on linux. Everything compiles fine, but it's a pain to port a project over because of unit reference

Re: [lazarus] Managing Cross Platform Projects

2007-03-21 Thread Felipe Monteiro de Carvalho
On 3/21/07, Lee Jenkins [EMAIL PROTECTED] wrote: I was wondering what other did to manage cross platform projects? I mostly use subversion to manage the source code. You will need a server for that, of course. It´s not hard to set up, I´ve already done it for internal non-open source projects.

[lazarus] po files and utf8

2007-03-21 Thread Sebastian Kraft
Hi, my *.po files are utf8 encoded. When I use GTK2 and Linux this is no problem. Translation is done by: TranslateUnitResourceStrings('myunit', myunit.%s.po', 'de', ''); I looked into lcl/translations.pas and it seems that every resourcestring is converted by UTF8ToSystemCharSet(); But when I

[lazarus] Crossplatform Windows-Linux

2007-03-21 Thread Andreas Berger
I'm sorry to bring up something like this, but I really need help. I need to port an app from windows to linux. However, since all my development is under windows I would like to compile under windows and run it on a (or better the only) linux machine in the company. The linux machine is

Re: [lazarus] Managing Cross Platform Projects

2007-03-21 Thread Lee Jenkins
Felipe Monteiro de Carvalho wrote: On 3/21/07, Lee Jenkins [EMAIL PROTECTED] wrote: I was wondering what other did to manage cross platform projects? I mostly use subversion to manage the source code. You will need a server for that, of course. It´s not hard to set up, I´ve already done it

Re: [lazarus] Managing Cross Platform Projects

2007-03-21 Thread Mattias Gaertner
On Wed, 21 Mar 2007 17:54:50 -0400 Lee Jenkins [EMAIL PROTECTED] wrote: Felipe Monteiro de Carvalho wrote: On 3/21/07, Lee Jenkins [EMAIL PROTECTED] wrote: I was wondering what other did to manage cross platform projects? I mostly use subversion to manage the source code. You will need

Re: [lazarus] Managing Cross Platform Projects

2007-03-21 Thread George Lober
Since the subject of SVN came up I couldn't resist to ask. Presently my method is to take a snapshot of the project directory to do backup. Easy and simple to do, and since I'm a one man show it is good enough for me. But of course there are problems if you need to look into changes in code, and

Re: [lazarus] Patch 4 sqlite3 componenteditor

2007-03-21 Thread tanila
Am Freitag, den 09.03.2007, 02:32 +0100 schrieb Mattias Gaertner: On Sat, 03 Mar 2007 14:29:11 +0100 tanila [EMAIL PROTECTED] wrote: Hello all, I found fixed a little Bug in sqlitecomponenteditor. The bug was fixed by Luiz. Thanks. Applied. Attachment includes the new

Re: [lazarus] Managing Cross Platform Projects

2007-03-21 Thread Graeme Geldenhuys
On 3/21/07, Lee Jenkins [EMAIL PROTECTED] wrote: I think that even with only 2 persons on a project, or even only 1 person working on different operating systems, subversion is a good solution. Further you can see all alterations later, it´s very convenient. Thank you. I'll take a look.