Re: [lazarus] Quick Fix menu items

2006-02-22 Thread Graeme Geldenhuys
This first 'Quick Fix' item shows, when a compiler message of the form 'unit xxx not used' is selected. It will remove the unit from the uses section. That sounds like a handy feature to have. :-) Regards, - Graeme - _

Re: [lazarus] Quick Fix menu items

2006-02-22 Thread Mattias Gaertner
On Wed, 22 Feb 2006 14:56:56 +0200 Graeme Geldenhuys [EMAIL PROTECTED] wrote: This first 'Quick Fix' item shows, when a compiler message of the form 'unit xxx not used' is selected. It will remove the unit from the uses section. That sounds like a handy feature to have. :-) I hope some

Re: [lazarus] Quick Fix menu items

2006-02-22 Thread Mattias Gaertner
On Wed, 22 Feb 2006 15:19:35 +0100 Mattias Gaertner [EMAIL PROTECTED] wrote: On Wed, 22 Feb 2006 14:56:56 +0200 Graeme Geldenhuys [EMAIL PROTECTED] wrote: This first 'Quick Fix' item shows, when a compiler message of the form 'unit xxx not used' is selected. It will remove the unit from

Re: [lazarus] Quick Fix menu items

2006-02-22 Thread Micha Nelissen
Mattias Gaertner wrote: I added the ability to improve messages by the quick fix items. As first example, I added an item, which improves compiler messages of the form: test1.lpr(1,1) Fatal: Can't find unit bogus to test1.lpr(9,39) Fatal: Can't find unit bogus That means, the source editor

[lazarus] Quick Fix menu items

2006-02-20 Thread Mattias Gaertner
I implemented 'Quick Fix' items for compiler messages. 'Quick Fix' items are context sensitive items in the popup menu of the IDE's message window. For an example see ide/msgquickfixes.pas. This first 'Quick Fix' item shows, when a compiler message of the form 'unit xxx not used' is selected.