<?xml version="1.0" encoding="utf-8"?>
<!--RSS generated by Flaimo.com RSS Builder [2013-05-21 10:14:48]-->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"><channel><docs>http://bugs.freepascal.org/</docs><link>http://bugs.freepascal.org/</link><description><![CDATA[Free Pascal/Lazarus Bug Tracker - Issues]]></description><title>Free Pascal/Lazarus Bug Tracker - Issues</title><image><title>Free Pascal/Lazarus Bug Tracker - Issues</title><url>http://bugs.freepascal.org/images/mantis_logo_button.gif</url><link>http://bugs.freepascal.org/</link><description><![CDATA[Free Pascal/Lazarus Bug Tracker - Issues]]></description></image><language>en</language><category>All Projects</category><ttl>10</ttl><dc:language>en</dc:language><sy:updatePeriod>hourly</sy:updatePeriod><sy:updateFrequency>1</sy:updateFrequency><item><title>0024449: Interfaces in records are not initialized properly</title><author></author><link>http://bugs.freepascal.org/view.php?id=24449</link><description><![CDATA[If you have a record with an interface in a private section, it sometimes will not be properly initialized. Records of this type which are returned from functions or are local variables sometimes will reference a garbage interface pointer. Attempts to set the value of the interface can cause a segment fault as the compiler generates code to release a interface referencing garbage.&lt;br /&gt;
&lt;br /&gt;
I marked the issue as major since I thought this kind of issue (managed types slipping through initialization) should never happen.]]></description><category>Compiler</category><pubDate>Tue, 21 May 2013 00:59:38 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24449</guid><comments>http://bugs.freepascal.org/view.php?id=24449#bugnotes</comments></item><item><title>0022969: tpagecontol won't align client when embedded in another tpagecontrol</title><author></author><link>http://bugs.freepascal.org/view.php?id=22969</link><description><![CDATA[I am porting a delphi app where I have a tpagecontrol host another tpagecontrol in the first tabsheet, the tpagecontrol will not align to client, when I maximize the form the embedded tabsheet only goes half way.&lt;br /&gt;
&lt;br /&gt;
This is on Kubuntu 12.04 using Lazarus 1.0 and QT widget set.]]></description><category>IDE</category><pubDate>Mon, 20 May 2013 21:50:23 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=22969</guid><comments>http://bugs.freepascal.org/view.php?id=22969#bugnotes</comments></item><item><title>0015589: TOpenGLControl doesn't support QT</title><author></author><link>http://bugs.freepascal.org/view.php?id=15589</link><description><![CDATA[TOpenGLControl currently doesn't support the QT widgetset.&lt;br /&gt;
As far as I can see QT should already provide a QGLContext (which apparently isn't integrated into qt4pas yet).]]></description><category>Other</category><pubDate>Mon, 20 May 2013 21:49:02 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=15589</guid><comments>http://bugs.freepascal.org/view.php?id=15589#bugnotes</comments></item><item><title>0024456: Incorrect AsLongint processing in db.pas</title><author></author><link>http://bugs.freepascal.org/view.php?id=24456</link><description><![CDATA[Do not know why AsLongint (synonym of AsInteger) invoked. But if it exists, it should be supported.&lt;br /&gt;
In base class, we have &lt;br /&gt;
function TField.GetAsLongint: Longint;&lt;br /&gt;
begin&lt;br /&gt;
  raise AccessError(SInteger);&lt;br /&gt;
end;&lt;br /&gt;
function TField.GetAsInteger: Integer;&lt;br /&gt;
begin&lt;br /&gt;
  Result:=GetAsLongint;&lt;br /&gt;
end;&lt;br /&gt;
&lt;br /&gt;
Obviously, in descendants GetAsLongint (only) should be overridden.&lt;br /&gt;
It is so in most cases. Bad exceptions - TBooleanField and TVariantField where only GetAsInteger overridden.]]></description><category>FCL</category><pubDate>Mon, 20 May 2013 21:45:20 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24456</guid><comments>http://bugs.freepascal.org/view.php?id=24456#bugnotes</comments></item><item><title>0024427: Memory leak in TFPCustomCanvas</title><author></author><link>http://bugs.freepascal.org/view.php?id=24427</link><description><![CDATA[When debugging the memory leak of TAChart reported in &lt;a href=&quot;http://bugs.freepascal.org/view.php?id=24296&quot;&gt;0024296&lt;/a&gt; I came across a memory leak in TFPCustomCanvas: In TFPCustomCanvas.SetClipRect (in fpcanvas.inc) a new clipping region is created and assigned to FClipRect. In the destructor of TFPCustomCanvas, however, FClipRect is not destroyed.&lt;br /&gt;
&lt;br /&gt;
The attached patch calls FreeAndNil(FClipRect) in TFPCustomCanvas.Destroy.]]></description><category>FCL</category><pubDate>Mon, 20 May 2013 18:20:08 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24427</guid><comments>http://bugs.freepascal.org/view.php?id=24427#bugnotes</comments></item><item><title>0024438: [patch] add some missed constants for BSD from fcntl.h</title><author></author><link>http://bugs.freepascal.org/view.php?id=24438</link><description><![CDATA[added constants:  &lt;br /&gt;
  O_SHLOCK, O_EXLOCK, O_ASYNC, O_FSYNC, O_SYNC, O_FSYNC, O_NOFOLLOW, O_DIRECT &lt;br /&gt;
from fcntl.h for FreeBSD only (sorry, i do not check sources of other BSD OS)]]></description><category>RTL</category><pubDate>Mon, 20 May 2013 17:31:44 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24438</guid><comments>http://bugs.freepascal.org/view.php?id=24438#bugnotes</comments></item><item><title>0024452: Simple Application with one blank form, memory leak</title><author></author><link>http://bugs.freepascal.org/view.php?id=24452</link><description><![CDATA[1.new application(such as project1)&lt;br /&gt;
2.set projects options(WinCE ARM......), and enable -gh&lt;br /&gt;
3.build&lt;br /&gt;
4.copy to ARM-WinCE and run project1.exe&lt;br /&gt;
5.close form and quit the application&lt;br /&gt;
6.Heaptrc report 2unfree memory.]]></description><category>Widgetset</category><pubDate>Mon, 20 May 2013 16:13:13 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24452</guid><comments>http://bugs.freepascal.org/view.php?id=24452#bugnotes</comments></item><item><title>0023971: Height Component RX DBLookupComboBox nonstandard</title><author></author><link>http://bugs.freepascal.org/view.php?id=23971</link><description><![CDATA[All components have standard height 23 and RX Component DBLookupComboBox has the default value 27 and it is not possible to reduce this value is locked.&lt;br /&gt;
 The coportamento this component is anyway?]]></description><category>rx</category><pubDate>Mon, 20 May 2013 16:08:46 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=23971</guid><comments>http://bugs.freepascal.org/view.php?id=23971#bugnotes</comments></item><item><title>0024341: TFPGMap.Find does not work correctly if not sorted</title><author></author><link>http://bugs.freepascal.org/view.php?id=24341</link><description><![CDATA[TFPGMap.Find miss some items if Sorted = False&lt;br /&gt;
&lt;br /&gt;
See the attached example.&lt;br /&gt;
&lt;br /&gt;
Only items with keys four and seven are found]]></description><category>RTL</category><pubDate>Mon, 20 May 2013 15:04:46 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24341</guid><comments>http://bugs.freepascal.org/view.php?id=24341#bugnotes</comments></item><item><title>0024455: [patch] [ide.lpk] : Allow use of ide.lpk package in IDE expert packages.</title><author></author><link>http://bugs.freepascal.org/view.php?id=24455</link><description><![CDATA[See summary.]]></description><category>IDE</category><pubDate>Mon, 20 May 2013 14:56:28 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24455</guid><comments>http://bugs.freepascal.org/view.php?id=24455#bugnotes</comments></item><item><title>0024454: [patch] [environmentopts.pp] : Prevent repopulating Recent project files menu with example projects if it was already cleared up</title><author></author><link>http://bugs.freepascal.org/view.php?id=24454</link><description><![CDATA[See summary and attached patch for more info.]]></description><category>IDE</category><pubDate>Mon, 20 May 2013 13:41:07 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24454</guid><comments>http://bugs.freepascal.org/view.php?id=24454#bugnotes</comments></item><item><title>0024443: Android example stopped working</title><author></author><link>http://bugs.freepascal.org/view.php?id=24443</link><description><![CDATA[Android example provided with Lazarus (examples\androidlcl) stopped working]]></description><category>General</category><pubDate>Mon, 20 May 2013 11:12:55 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24443</guid><comments>http://bugs.freepascal.org/view.php?id=24443#bugnotes</comments></item><item><title>0024453: problem with method arguments type syntax when nested generics type is in charge</title><author></author><link>http://bugs.freepascal.org/view.php?id=24453</link><description><![CDATA[When declare method arguments or result type and use inherited generic type, you have got compiler error. See comments in attached example.]]></description><category>Compiler</category><pubDate>Mon, 20 May 2013 11:03:05 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24453</guid><comments>http://bugs.freepascal.org/view.php?id=24453#bugnotes</comments></item><item><title>0024036: It is not possible to rebuild Lazarus installed from deb package</title><author></author><link>http://bugs.freepascal.org/view.php?id=24036</link><description><![CDATA[When Lazarus is installed systemwide from the debs, its directory is by default unwritable by anybody but root. Therefore, it is not possible to rebuild it as a normal user, and since rebuilding Lazarus is an often needed operation this is problematic. Two most obvious workarounds are running Lazarus as root, or making its directory world writable, which both present bad practice from the security viewpoint. There is a third solution which is more correct, and could be implemented by the installscripts - make lazarus directory owned and writable by a group. The user which needs to rebuild Lazarus should then simply join that group and be able to do it. That option could be prompted for on install too.]]></description><category>Other</category><pubDate>Mon, 20 May 2013 02:54:33 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24036</guid><comments>http://bugs.freepascal.org/view.php?id=24036#bugnotes</comments></item><item><title>0024436: ToolButtons are always highlighted</title><author></author><link>http://bugs.freepascal.org/view.php?id=24436</link><description><![CDATA[ToolButtons on TToolBar are always displayed highlighted. Property ToolBar.Flat is False.&lt;br /&gt;
&lt;br /&gt;
Tested on GTK2 and Qt4.]]></description><category>LCL</category><pubDate>Mon, 20 May 2013 02:37:52 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24436</guid><comments>http://bugs.freepascal.org/view.php?id=24436#bugnotes</comments></item><item><title>0024174: [SynEdit] clean 5, remove some ifdef SYN_LAZARUS, FPC</title><author></author><link>http://bugs.freepascal.org/view.php?id=24174</link><description><![CDATA[SynEdit at line 4450 function WMDropFiles&lt;br /&gt;
I changed ifdef to comment&lt;br /&gt;
{TODO: DropFiles&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
SynEdit at line 7739, 7752&lt;br /&gt;
I removed {$IFDEF SYN_LAZARUS} but keep the hint to future&lt;br /&gt;
// ToDo DragAcceptFiles&lt;br /&gt;
&lt;br /&gt;
SynEditTypes]]></description><category>LCL</category><pubDate>Sun, 19 May 2013 20:03:58 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24174</guid><comments>http://bugs.freepascal.org/view.php?id=24174#bugnotes</comments></item><item><title>0024451: ClientToScreen gives wrong result for Mirrored TWinControls</title><author></author><link>http://bugs.freepascal.org/view.php?id=24451</link><description><![CDATA[It looks like ClientToScreen gives wrong result for Mirrored TWinControls.  I have attached a test file.]]></description><category>LCL</category><pubDate>Sun, 19 May 2013 17:26:45 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24451</guid><comments>http://bugs.freepascal.org/view.php?id=24451#bugnotes</comments></item><item><title>0024446: Custom images on TDBNavigator do not reflect disabled button states</title><author></author><link>http://bugs.freepascal.org/view.php?id=24446</link><description><![CDATA[NOTE: Issue in 1.1 but that's not available in Product Version dropdown&lt;br /&gt;
&lt;br /&gt;
Now that we have an &quot;almost offical&quot; imagelist for the dbnavigator component:&lt;br /&gt;
&lt;br /&gt;
The original glyphs change based on the active state of the navigator buttons - since there is no Disabled Images list (or some other mechanism) disabled glyphs do not seem to work with custom images.]]></description><category>Database Components</category><pubDate>Sun, 19 May 2013 16:19:23 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24446</guid><comments>http://bugs.freepascal.org/view.php?id=24446#bugnotes</comments></item><item><title>0023954: FormatFloat bug or DefaultFormatSettings configuration?</title><author></author><link>http://bugs.freepascal.org/view.php?id=23954</link><description><![CDATA[Hello buddies,&lt;br /&gt;
&lt;br /&gt;
On Delphi, I got:&lt;br /&gt;
&lt;br /&gt;
  WriteLn(FormatFloat(',0.00', 12345.55)); // Output: 12.345,55 - OK&lt;br /&gt;
  WriteLn(FormatFloat(',0.00', 1234.55));  // Output: 1.234,55 - OK&lt;br /&gt;
&lt;br /&gt;
But, on FPC (Windows):&lt;br /&gt;
&lt;br /&gt;
  WriteLn(FormatFloat(',0.00', 12345.55)); // Output: 12.345,55 - OK&lt;br /&gt;
  WriteLn(FormatFloat(',0.00', 1234.55));  // Output: 1234,55 - Wrong&lt;br /&gt;
&lt;br /&gt;
But on Linux, the FPC returns OK like Delphi.&lt;br /&gt;
&lt;br /&gt;
So, this is a bug or I must configure DefaultFormatSettings?&lt;br /&gt;
&lt;br /&gt;
My environment:&lt;br /&gt;
&lt;br /&gt;
Lazarus 1.1 r40362 FPC 2.7.1 i386-win32-win32/win64]]></description><category>RTL</category><pubDate>Sun, 19 May 2013 03:03:25 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=23954</guid><comments>http://bugs.freepascal.org/view.php?id=23954#bugnotes</comments></item><item><title>0014399: "Step Over" steps into method of an interface</title><author></author><link>http://bugs.freepascal.org/view.php?id=14399</link><description><![CDATA[When I debug an application that uses interfaces and I want to step over a call to a method of such an interface, the debugger always steps into them.]]></description><category>Debugger</category><pubDate>Sun, 19 May 2013 02:59:23 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=14399</guid><comments>http://bugs.freepascal.org/view.php?id=14399#bugnotes</comments></item><item><title>0024450: IDE freezes immediate after startup/opening project</title><author></author><link>http://bugs.freepascal.org/view.php?id=24450</link><description><![CDATA[When I start the IDE, it opens all(?) windows and then freezes. It doesn't happen with all projects though. When I kill Lazarus and restart, it asks me if I want to start with a new project. If I do so,  the IDE freeze. (So it also happens with a new project)&lt;br /&gt;
&lt;br /&gt;
When I start the IDE with a project which does not freeze the IDE, I can open a project that frezes the IDE at start.&lt;br /&gt;
&lt;br /&gt;
When I attach gdb to Lazarus after a freeze and ask for a backtrace, the result is as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(gdb) bt&lt;br /&gt;
#0  0x9cb73c22 in mach_msg_trap ()&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=1&quot;&gt;0000001&lt;/a&gt;  0x9cb731f6 in mach_msg ()&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=2&quot;&gt;0000002&lt;/a&gt;  0x9016d9da in __CFRunLoopServiceMachPort ()&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=3&quot;&gt;0000003&lt;/a&gt;  0x90176b04 in __CFRunLoopRun ()&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=4&quot;&gt;0000004&lt;/a&gt;  0x901761dc in CFRunLoopRunSpecific ()&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=5&quot;&gt;0000005&lt;/a&gt;  0x90176088 in CFRunLoopRunInMode ()&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=6&quot;&gt;0000006&lt;/a&gt;  0x910c8543 in RunCurrentEventLoopInMode ()&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=7&quot;&gt;0000007&lt;/a&gt;  0x910cf8ab in ReceiveNextEventCommon ()&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=8&quot;&gt;0000008&lt;/a&gt;  0x91265910 in ReceiveNextEventInMode ()&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=9&quot;&gt;0000009&lt;/a&gt;  0x912659a8 in ReceiveNextEvent ()&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=10&quot;&gt;0000010&lt;/a&gt; 0x001a6e49 in TCARBONWIDGETSET__APPWAITMESSAGE (this=0xc1201a0) at ./carbon/carbonobject.inc:671&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=11&quot;&gt;0000011&lt;/a&gt; 0x0005cf8d in TAPPLICATION__IDLE (WAIT=true, this=0xb6bc310) at ./include/application.inc:411&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=12&quot;&gt;0000012&lt;/a&gt; 0x00057ca4 in TCUSTOMFORM__SHOWMODAL (this=0x13b63350) at ./include/customform.inc:2916&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=13&quot;&gt;0000013&lt;/a&gt; 0x002217e9 in TQUESTIONDLG__SHOWMODAL (this=0x13b63350) at ./include/promptdialog.inc:690&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=14&quot;&gt;0000014&lt;/a&gt; 0x00221cf6 in SHOWQUESTIONDIALOG (ACAPTION=0xc078f0, AMSG=0x121f2bcc, DLGTYPE=256, BUTTONS=0x116b9160, HELPCTX=0)&lt;br /&gt;
    at ./include/promptdialog.inc:808&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=15&quot;&gt;0000015&lt;/a&gt; 0x000bc663 in TWIDGETSET__ASKUSER (DIALOGCAPTION=0xc078f0, DIALOGMESSAGE=0x121f2bcc, DIALOGTYPE=256, BUTTONS=0x116b9160, HELPCTX=0, &lt;br /&gt;
    this=0xc1201a0) at ./include/intfbaselcl.inc:56&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=16&quot;&gt;0000016&lt;/a&gt; 0x0022267b in QUESTIONDLG (ACAPTION=0xc078f0, AMSG=0x121f2bcc, DLGTYPE=MTWARNING, BUTTONS=0x116b9190, HELPCTX=0, highBUTTONS=3)&lt;br /&gt;
    at ./include/promptdialog.inc:920&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=17&quot;&gt;0000017&lt;/a&gt; 0x00222778 in QUESTIONDLG (ACAPTION=0xc078f0, AMSG=0x121f2bcc, DLGTYPE=MTWARNING, BUTTONS=0x116b8f50, HELPKEYWORD=0x0, highBUTTONS=3)&lt;br /&gt;
    at ./include/promptdialog.inc:930&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=18&quot;&gt;0000018&lt;/a&gt; 0x0007b4b7 in TMAINIDE__ONIDEQUESTIONDIALOG (ACAPTION=0xc078f0, AMSG=0x121f2bcc, DLGTYPE=MTWARNING, BUTTONS=0x116b8fb0, &lt;br /&gt;
    HELPKEYWORD=0x0, highBUTTONS=3, this=0xc100260) at main.pp:3389&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=19&quot;&gt;0000019&lt;/a&gt; 0x00075feb in ASKIFLOADLASTFAILINGPROJECT (parentfp=0xbffff7d8) at main.pp:2153&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=20&quot;&gt;0000020&lt;/a&gt; 0x00075bc2 in TMAINIDE__SETUPSTARTPROJECT (this=0xc100260) at main.pp:2198&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=21&quot;&gt;0000021&lt;/a&gt; 0x0007251b in TMAINIDE__STARTIDE (this=0xc100260) at main.pp:1466&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=22&quot;&gt;0000022&lt;/a&gt; 0x00011aaf in PASCALMAIN () at lazarus.pp:109&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=23&quot;&gt;0000023&lt;/a&gt; 0x0002f9b4 in SYSTEM_$$_FPC_SYSTEMMAIN$LONGINT$PPCHAR$PPCHAR ()&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=24&quot;&gt;0000024&lt;/a&gt; 0x000118b9 in _start ()&lt;br /&gt;
&lt;a href=&quot;http://bugs.freepascal.org/view.php?id=25&quot;&gt;0000025&lt;/a&gt; 0x000117d8 in start ()&lt;br /&gt;
(gdb)]]></description><category>IDE</category><pubDate>Sun, 19 May 2013 00:35:40 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24450</guid><comments>http://bugs.freepascal.org/view.php?id=24450#bugnotes</comments></item><item><title>0018929: [patch] Fixes to completion tool and FindContext for hidden methods</title><author></author><link>http://bugs.freepascal.org/view.php?id=18929</link><description><![CDATA[In case &lt;br /&gt;
  TMyClass=class(TObject)&lt;br /&gt;
    constructor Create(i: Integer);&lt;br /&gt;
  end;&lt;br /&gt;
I hide TObject's parameter-less constructor and cannot write &lt;br /&gt;
  TMyClass.Create; // will not compile&lt;br /&gt;
If I don't want to hide ancestor's constructor I must write&lt;br /&gt;
  TMyClass=class(TObject)&lt;br /&gt;
    constructor Create(i: Integer); overload;&lt;br /&gt;
  end; &lt;br /&gt;
But codetools (IdentCompletion and FindContext) don't know about this.&lt;br /&gt;
So Ctrl+Space and Ctrl+Shift+Space show inaccessible methods (e.g. constructors)]]></description><category>IDE</category><pubDate>Sat, 18 May 2013 23:26:54 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=18929</guid><comments>http://bugs.freepascal.org/view.php?id=18929#bugnotes</comments></item><item><title>0024192: Error with lazarus compiler.</title><author></author><link>http://bugs.freepascal.org/view.php?id=24192</link><description><![CDATA[FPC Version:&lt;br /&gt;
&lt;br /&gt;
Working Copy Root Path: /home/jshand/fpc&lt;br /&gt;
URL: &lt;a href=&quot;http://svn.freepascal.org/svn/fpc/trunk&quot;&gt;http://svn.freepascal.org/svn/fpc/trunk&lt;/a&gt; [&lt;a href=&quot;http://svn.freepascal.org/svn/fpc/trunk&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
Repository Root: &lt;a href=&quot;http://svn.freepascal.org/svn/fpc&quot;&gt;http://svn.freepascal.org/svn/fpc&lt;/a&gt; [&lt;a href=&quot;http://svn.freepascal.org/svn/fpc&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
Repository UUID: 3ad0048d-3df7-0310-abae-a5850022a9f2&lt;br /&gt;
Revision: 24098&lt;br /&gt;
Node Kind: directory&lt;br /&gt;
Schedule: normal&lt;br /&gt;
Last Changed Author: sergei&lt;br /&gt;
Last Changed Rev: 24098&lt;br /&gt;
Last Changed Date: 2013-04-01 08:58:52 +1300 (Mon, 01 Apr 2013)&lt;br /&gt;
&lt;br /&gt;
LAZARUS Version&lt;br /&gt;
&lt;br /&gt;
Working Copy Root Path: /home/jshand/lazarus&lt;br /&gt;
URL: &lt;a href=&quot;http://svn.freepascal.org/svn/lazarus/trunk&quot;&gt;http://svn.freepascal.org/svn/lazarus/trunk&lt;/a&gt; [&lt;a href=&quot;http://svn.freepascal.org/svn/lazarus/trunk&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
Repository Root: &lt;a href=&quot;http://svn.freepascal.org/svn/lazarus&quot;&gt;http://svn.freepascal.org/svn/lazarus&lt;/a&gt; [&lt;a href=&quot;http://svn.freepascal.org/svn/lazarus&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
Repository UUID: 4005530d-fff6-0310-9dd1-cebe43e6787f&lt;br /&gt;
Revision: 40674&lt;br /&gt;
Node Kind: directory&lt;br /&gt;
Schedule: normal&lt;br /&gt;
Last Changed Author: mattias&lt;br /&gt;
Last Changed Rev: 40674&lt;br /&gt;
Last Changed Date: 2013-04-01 07:51:38 +1300 (Mon, 01 Apr 2013)&lt;br /&gt;
&lt;br /&gt;
PROBLEM&lt;br /&gt;
&lt;br /&gt;
After a restart of lazarus, you can run your project without any problems, however, when you try to run the project again you the error as displayed in the picture.]]></description><category>Compiler</category><pubDate>Sat, 18 May 2013 14:28:22 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=24192</guid><comments>http://bugs.freepascal.org/view.php?id=24192#bugnotes</comments></item><item><title>0022047: Feature request - TAnchorDockHeader.IsBeveled property</title><author></author><link>http://bugs.freepascal.org/view.php?id=22047</link><description><![CDATA[I feel that the bevel drawn around the docking header looks too &quot;busy&quot; in the IDE.  Adding an option to enable / disable the drawing of this bevel would be nice.  I have hacked a quick solution to do this, refer to attached diff.&lt;br /&gt;
&lt;br /&gt;
I would appreciate it if this functionality could be added to the docking package.]]></description><category>Other</category><pubDate>Sat, 18 May 2013 14:23:41 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=22047</guid><comments>http://bugs.freepascal.org/view.php?id=22047#bugnotes</comments></item><item><title>0023896: Connot compile Lazarus</title><author></author><link>http://bugs.freepascal.org/view.php?id=23896</link><description><![CDATA[If I want compile the SVN Setup &quot;Lazarus-1.1-40325-fpc-2.6.0-20130216-win32.exe&quot; comes this error:&lt;br /&gt;
&lt;br /&gt;
C:\lazarus\fpc\2.6.0\bin\i386-win32\make.exe: *** [cleanide] Error 255&lt;br /&gt;
&lt;br /&gt;
With SVN 40217 was no error, with SVN 40312 comes the error.&lt;br /&gt;
&lt;br /&gt;
Please, korrect the makefile and check the version from make.exe.]]></description><category>IDE</category><pubDate>Sat, 18 May 2013 14:16:38 +0200</pubDate><guid>http://bugs.freepascal.org/view.php?id=23896</guid><comments>http://bugs.freepascal.org/view.php?id=23896#bugnotes</comments></item></channel></rss>
