Re: [lazarus] [patch] ChecklistBox.onClickCheck

2006-06-02 Thread Vincent Snijders
DarekM wrote: Vincent Snijders napisał(a): darekm wrote: Hi attached patch added: ChecklistBox.onClickCheck (for GTK and GTK2) publish property TCheckBox.font remove tCustomLabel.FontChange(Sender: TObject); (default is fontchanged) Thanks for the patch. I have the following

Re: [lazarus] [patch] ChecklistBox.onClickCheck

2006-06-02 Thread DarekM
Vincent Snijders napisał(a): DarekM wrote: Vincent Snijders napisał(a): darekm wrote: Hi attached patch added: ChecklistBox.onClickCheck (for GTK and GTK2) publish property TCheckBox.font remove tCustomLabel.FontChange(Sender: TObject); (default is fontchanged) Thanks for the

Re: [lazarus] SegFault in Lazarus

2006-06-02 Thread Jens Arm
I only get these: An unhandled exception occurred at $ And it doesn't matter if there is a config or not. try removing the config and start lazarus with ( export LANG=en_US ; ./lazarus ) With that - it works. But without Lazarus SegFaults somewhere in the Language code - why?

Re: [lazarus] SegFault in Lazarus

2006-06-02 Thread Vincent Snijders
Jens Arm wrote: I only get these: An unhandled exception occurred at $ And it doesn't matter if there is a config or not. try removing the config and start lazarus with ( export LANG=en_US ; ./lazarus ) With that - it works. But without Lazarus SegFaults somewhere in the Language code -

[lazarus] Directory Tree View for Lazarus

2006-06-02 Thread Alexander Todorov
Hello, I wrote a simple TTreeView descendant that shows directories like the TShellTreeView in Delphi. It is not quite ready yet, but I think it can be used in applications. The source and a demo program is available at: svn co http://opensvn.csie.org/alexx/directorytree Notice: This is tested

[lazarus] What's wrong?

2006-06-02 Thread Arí Ricardo Ody
I have a project that is running day-by-day with no news. Today I add a TSpeedButton(later a TButton, trying to make it compile OK). If I build the project it run compiles and link edit OK. If I double click on the new button I receive the message: The component editor of class

Re: [lazarus] What's wrong?

2006-06-02 Thread Mattias Gaertner
On Fri, 02 Jun 2006 10:28:26 -0300 Arí Ricardo Ody [EMAIL PROTECTED] wrote: I have a project that is running day-by-day with no news. Today I add a TSpeedButton(later a TButton, trying to make it compile OK). If I build the project it run compiles and link edit OK. If I double click on the

Re: [lazarus] What's wrong?

2006-06-02 Thread Arí Ricardo Ody
I forgot to say: I'm running Lazarus 0.9.14. Is this the reason that help doesn't answer my click? [ ] Ricardo At 11:27 2/6/2006, you wrote: On Fri, 02 Jun 2006 10:28:26 -0300 Arí Ricardo Ody [EMAIL PROTECTED] wrote: I have a project that is running day-by-day with no news. Today I add a

[lazarus] Execution Stopped message

2006-06-02 Thread Alain Michaud
Hi, Linux, 0.9.16: When I run an application from the lazarus IDE the close button gives the info: Ececution Stopped Is there a way to avoid that ? Thank you Alain _ To unsubscribe: mail [EMAIL PROTECTED] with

[lazarus] Does 'inlike;' means what I thnik?

2006-06-02 Thread Alexandre Leclerc
I just saw the 'inline' reserved work... It's weird, I code in Delphi since 1997 and I never got in toutch with that. This is a discovery for me! :) So if I declare: function Max(const a, b: Integer): Integer; inline; begin if a b then Result := a else Result := b; end; Does that mean

Re: [lazarus] Does 'inlike;' means what I thnik?

2006-06-02 Thread Michael Van Canneyt
On Fri, 2 Jun 2006, Alexandre Leclerc wrote: I just saw the 'inline' reserved work... It's weird, I code in Delphi since 1997 and I never got in toutch with that. This is a discovery for me! :) So if I declare: function Max(const a, b: Integer): Integer; inline; begin if a b then

Re: [lazarus] Does 'inlike;' means what I thnik?

2006-06-02 Thread Alain Michaud
Oh yes! This is some kind of macro !!! I always though fpc was not capable of doing this kind of things! On Fri, 2006-06-02 at 21:44 +0200, Michael Van Canneyt wrote: On Fri, 2 Jun 2006, Alexandre Leclerc wrote: I just saw the 'inline' reserved work... It's weird, I code in Delphi

Re: [lazarus] Patch: encloseselectiondlg - focus prob. corrected

2006-06-02 Thread Vincent Snijders
Alexandre Leclerc wrote: 2006/6/1, Vincent Snijders [EMAIL PROTECTED]: Why was OKButton renamed to btnOK and CancelButton to btnCancel? Well, if this is not politically correct to rename controls, please inform me so that I make all my efforts to not do it again; it is not my intention to

Re: [lazarus] Patch: encloseselectiondlg - focus prob. corrected

2006-06-02 Thread Burkhard Carstens
[..] CORRECT FMyString: string; INCORRECT lpstrMyString: string; The exception to the Hungarian notation rule is in enumerated types. If other developers agree, we should add this to the wiki page. If not, then deviation from this standard should be mentioned. For

[lazarus] glib version number

2006-06-02 Thread Alain Michaud
Hi, (FPC 2.0.2) and (Lazarus 0.9.16) and (gtk) and (kernel 2.6.12): That goes with: (libglib-1.2.so) or (libglib-2.0.so) Thank you Alain Michaud _ To unsubscribe: mail [EMAIL PROTECTED] with

Re: [lazarus] Patch: encloseselectiondlg - focus prob. corrected

2006-06-02 Thread Mattias Gaertner
On Fri, 2 Jun 2006 22:16:51 +0200 Burkhard Carstens [EMAIL PROTECTED] wrote: [..] CORRECT FMyString: string; INCORRECT lpstrMyString: string; The exception to the Hungarian notation rule is in enumerated types. If other developers agree, we should add this to

Re: [lazarus] Patch: encloseselectiondlg - focus prob. corrected

2006-06-02 Thread Alexandre Leclerc
2006/6/2, Burkhard Carstens [EMAIL PROTECTED]: [..] CORRECT FMyString: string; INCORRECT lpstrMyString: string; The exception to the Hungarian notation rule is in enumerated types. If other developers agree, we should add this to the wiki page. If not, then deviation

Re: [lazarus] Patch: encloseselectiondlg - focus prob. corrected

2006-06-02 Thread Mattias Gaertner
On Fri, 2 Jun 2006 20:21:01 -0400 Alexandre Leclerc [EMAIL PROTECTED] wrote: 2006/6/2, Burkhard Carstens [EMAIL PROTECTED]: [..] CORRECT FMyString: string; INCORRECT lpstrMyString: string; The exception to the Hungarian notation rule is in enumerated