mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-28 18:03:47 +02:00
IDE: Show (default) text also in TargetOS and TargetCPU option controls for consistency.
git-svn-id: trunk@42038 -
This commit is contained in:
parent
7978db505c
commit
664d9707a1
@ -344,16 +344,17 @@ begin
|
||||
TargetProcessorProcComboBox.Text := 'default';
|
||||
end else begin
|
||||
grpTargetPlatform.Visible:=true;
|
||||
// Target OS
|
||||
i := TargetOSComboBox.Items.IndexOf(TargetOS);
|
||||
if i < 0 then
|
||||
i := 0; // 0 is default
|
||||
TargetOSComboBox.ItemIndex := i;
|
||||
TargetOSComboBox.Text := TargetOS;
|
||||
// Target CPU family
|
||||
i := TargetCPUComboBox.Items.IndexOf(TargetCPU);
|
||||
if i < 0 then
|
||||
i := 0; // 0 is default
|
||||
TargetCPUComboBox.ItemIndex := i;
|
||||
TargetCPUComboBox.Text := TargetCPU;
|
||||
// Target Processor
|
||||
TargetProcessorProcComboBox.Text := ProcessorToCaption(TargetProcessor);
|
||||
|
||||
cmbSyntaxMode.Text := SyntaxModeToCaption(SyntaxMode);
|
||||
|
Loading…
Reference in New Issue
Block a user