mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-06 13:41:35 +02:00
Converter: Remove the experimental FixEncoding checkbox from settings dialog
git-svn-id: trunk@31024 -
This commit is contained in:
parent
ba43bbf08f
commit
76c27fe938
@ -376,19 +376,4 @@ object ConvertSettingsForm: TConvertSettingsForm
|
||||
Style = csDropDownList
|
||||
TabOrder = 13
|
||||
end
|
||||
object FixEncodingCheckBox: TCheckBox
|
||||
AnchorSideLeft.Control = BackupCheckBox
|
||||
AnchorSideTop.Control = KeepFileOpenCheckBox
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 12
|
||||
Height = 18
|
||||
Hint = 'Separate form files allow different properties'
|
||||
Top = 220
|
||||
Width = 185
|
||||
BorderSpacing.Top = 15
|
||||
Caption = 'Try to fix character encoding'
|
||||
ParentShowHint = False
|
||||
ShowHint = True
|
||||
TabOrder = 14
|
||||
end
|
||||
end
|
||||
|
@ -58,7 +58,6 @@ type
|
||||
// Actual user settings.
|
||||
fBackupFiles: boolean;
|
||||
fKeepFileOpen: boolean;
|
||||
fFixEncoding: boolean;
|
||||
fMultiPlatform: boolean;
|
||||
fSupportDelphi: boolean;
|
||||
fSameDfmFile: boolean;
|
||||
@ -110,7 +109,6 @@ type
|
||||
|
||||
property BackupFiles: boolean read fBackupFiles;
|
||||
property KeepFileOpen: boolean read fKeepFileOpen;
|
||||
property FixEncoding: boolean read fFixEncoding;
|
||||
property MultiPlatform: boolean read fMultiPlatform;
|
||||
property SupportDelphi: boolean read fSupportDelphi;
|
||||
property SameDfmFile: boolean read fSameDfmFile;
|
||||
@ -131,7 +129,6 @@ type
|
||||
|
||||
TConvertSettingsForm = class(TForm)
|
||||
CoordOffsComboBox: TComboBox;
|
||||
FixEncodingCheckBox: TCheckBox;
|
||||
UnitReplaceComboBox: TComboBox;
|
||||
MultiPlatformCheckBox: TCheckBox;
|
||||
SameDfmCheckBox: TCheckBox;
|
||||
@ -543,7 +540,6 @@ begin
|
||||
// Settings --> UI. Loaded from ConfigSettings earlier.
|
||||
BackupCheckBox.Checked :=fBackupFiles;
|
||||
KeepFileOpenCheckBox.Checked :=fKeepFileOpen;
|
||||
FixEncodingCheckBox.Checked :=fFixEncoding;
|
||||
MultiPlatformCheckBox.Checked :=fMultiPlatform;
|
||||
SupportDelphiCheckBox.Checked :=fSupportDelphi;
|
||||
SameDfmCheckBox.Checked :=fSameDfmFile;
|
||||
@ -559,7 +555,6 @@ begin
|
||||
// UI --> Settings. Will be saved to ConfigSettings later.
|
||||
fBackupFiles :=BackupCheckBox.Checked;
|
||||
fKeepFileOpen :=KeepFileOpenCheckBox.Checked;
|
||||
fFixEncoding :=FixEncodingCheckBox.Checked;
|
||||
fMultiPlatform :=MultiPlatformCheckBox.Checked;
|
||||
fSupportDelphi :=SupportDelphiCheckBox.Checked;
|
||||
fSameDfmFile :=SameDfmCheckBox.Checked;
|
||||
|
Loading…
Reference in New Issue
Block a user