Re: [Lazarus] lazarus.pp(142, 1) Error: Undefined symbol: DEBUGINFO_DBF_PRSCORE

2014-10-21 Thread Mattias Gaertner
Marcos Douglas m...@delfire.net hat am 21. Oktober 2014 um 03:32 geschrieben: [...] I did: 1- make distclean in FPC 2.6.5 2- make distclean in Laz Use make clean all at 2 to build all common tools . 3- compile a new IDE (pure) 4- using IDE, clean and build using my pcp and lazarus-dir

Re: [Lazarus] Error messages: cannot versus can't

2014-10-21 Thread Mark Morgan Lloyd
Hans-Peter Diettrich wrote: Does Lazarus etc. have internationalisation for Esperanto? Err, isn't that *nationalization*? ;-) In British English, nationalization means state seizure of a company or entire industry, which historically resulted in its being given to the Trades Unions to

Re: [Lazarus] lazarus.pp(142, 1) Error: Undefined symbol: DEBUGINFO_DBF_PRSCORE

2014-10-21 Thread Marcos Douglas
On Tue, Oct 21, 2014 at 3:53 AM, Mattias Gaertner nc-gaert...@netcologne.de wrote: Marcos Douglas m...@delfire.net hat am 21. Oktober 2014 um 03:32 geschrieben: [...] I did: 1- make distclean in FPC 2.6.5 2- make distclean in Laz Use make clean all at 2 to build all common tools . Ok,

[Lazarus] TAChart cannot zoom

2014-10-21 Thread Leonardo M. Ramé
Hi, I don't know what I did, but I no longer can zoom in / zoom out (by dragging the mouse pointer) my chart. If I draw 1000 data points, they all are drawn into the chart, but I only want to display part of that data, for example 100 points. Here's the definition of my TAChart object

[Lazarus] TAChart cannot zoom

2014-10-21 Thread Werner Pamler
You have added a ChartToolset and have assigned it to the chart. This deactivates the built-in toolset which is responsible for default zooming and panning. All you have to do is to add another ZoomDragTool to your toolset. To make it respond to dragging with the left mouse button set its

Re: [Lazarus] How do I tell codetools to use implicitly loaded unit for code complesion?

2014-10-21 Thread Michael Ring
Hi Mattias, unfortunately I did not see your answer back in July. I did some digging myself and found GetHiddenUsedUnits. The rule to make loading happen is that target os is embedded fpc version = 2.7.1 and the value of the option -Wp determines which unit to load. Example:

[Lazarus] CodeTools error when using 'section' keyword

2014-10-21 Thread Michael Ring
program hello; const devcfg3: longWord = DEVCFG3_DEFAULT; section '.devcfg3'; begin end. is a program that compiles fine but gives me an error in lazarus when I try to use completion with ctrl-SPACE. hello.pas(3,48) Error: = erwartet aber '.devcfg3' gefunden Can I disable codetools for

Re: [Lazarus] How do I tell codetools to use implicitly loaded unit for code complesion?

2014-10-21 Thread Mattias Gaertner
Michael Ring m...@michael-ring.org hat am 21. Oktober 2014 um 22:27 geschrieben: [...] Example: -Wppic32mx795f512h should load unit pic32mx795f512h The IDE already does that. Search for MacroControllerUnit. to make life a (very little) harder the fully correct rule for selecting the

Re: [Lazarus] CodeTools error when using 'section' keyword

2014-10-21 Thread Mattias Gaertner
Michael Ring m...@michael-ring.org hat am 21. Oktober 2014 um 22:36 geschrieben: program hello; const devcfg3: longWord = DEVCFG3_DEFAULT; section '.devcfg3'; begin end. is a program that compiles fine but gives me an error in lazarus when I try to use completion with ctrl-SPACE.