mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-26 16:27:23 +01:00
IDE: make the filter for all compiler options work with uppercase text.
git-svn-id: trunk@42219 -
This commit is contained in:
parent
f2d413fecf
commit
933c2914a9
@ -7,7 +7,7 @@ interface
|
|||||||
uses
|
uses
|
||||||
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
||||||
contnrs, Buttons, ButtonPanel, EditBtn,
|
contnrs, Buttons, ButtonPanel, EditBtn,
|
||||||
FileProcs, EnvironmentOpts, Compiler, LazarusIDEStrConsts;
|
LCLProc, FileProcs, EnvironmentOpts, Compiler, LazarusIDEStrConsts;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
@ -315,7 +315,8 @@ begin
|
|||||||
Container.DisableAutoSizing;
|
Container.DisableAutoSizing;
|
||||||
try
|
try
|
||||||
// First filter and set Visible flag.
|
// First filter and set Visible flag.
|
||||||
FOptionsReader.FilterOptions(edOptionsFilter.Text, cbShowModified.Checked);
|
FOptionsReader.FilterOptions(UTF8LowerCase(edOptionsFilter.Text),
|
||||||
|
cbShowModified.Checked);
|
||||||
// Then create and place new controls in GUI
|
// Then create and place new controls in GUI
|
||||||
FGeneratedControls.Clear;
|
FGeneratedControls.Clear;
|
||||||
yLoc := 0;
|
yLoc := 0;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user