mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 18:08:35 +02:00
LCL: TFindOption: frHideEntireScope, feature 19619
git-svn-id: trunk@31357 -
This commit is contained in:
parent
347515afc3
commit
bf3766ff9c
@ -367,7 +367,7 @@ type
|
||||
TFindOption = (frDown, frFindNext, frHideMatchCase, frHideWholeWord,
|
||||
frHideUpDown, frMatchCase, frDisableMatchCase, frDisableUpDown,
|
||||
frDisableWholeWord, frReplace, frReplaceAll, frWholeWord, frShowHelp,
|
||||
frEntireScope);
|
||||
frEntireScope, frHideEntireScope);
|
||||
TFindOptions = set of TFindOption;
|
||||
|
||||
TFindDialog = class(TCommonDialog)
|
||||
|
@ -210,6 +210,7 @@ begin
|
||||
Dlg.CaseSensitiveCheckBox.Visible:=not (frHideMatchCase in Options);
|
||||
Dlg.DirectionRadioGroup.Visible:=not (frHideUpDown in Options);
|
||||
Dlg.HelpButton.Visible:=(frShowHelp in Options);
|
||||
Dlg.EntireScopeCheckBox.Visible := not (frHideEntireScope in Options);
|
||||
end;
|
||||
|
||||
procedure TFindDialog.GetFormValues;
|
||||
|
@ -116,6 +116,7 @@ begin
|
||||
dlg.CaseSensitiveCheckBox.Visible:=not (frHideMatchCase in Options);
|
||||
dlg.DirectionRadioGroup.Visible:=not (frHideUpDown in Options);
|
||||
dlg.HelpButton.Visible:=(frShowHelp in Options);
|
||||
Dlg.EntireScopeCheckBox.Visible := not (frHideEntireScope in Options);
|
||||
end;
|
||||
|
||||
procedure TReplaceDialog.GetFormValues;
|
||||
|
Loading…
Reference in New Issue
Block a user