Changeset 14 for trunk/IDE/Forms/UMainForm.pas
- Timestamp:
- Nov 8, 2010, 12:58:47 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IDE/Forms/UMainForm.pas
r12 r14 7 7 uses 8 8 SysUtils, Variants, Classes, Graphics, Controls, Forms, 9 Dialogs, StdCtrls, UCompiler, UProducerAsm8051,Registry,10 UProducerDynamicC, ComCtrls, ExtCtrls, SynEdit, SynHighlighterPas, UProducerTreeView,11 UPro ducerPascal, UProject, FileUtil, Menus, ActnList, UCoolDocking,9 Dialogs, StdCtrls, UCompiler, Registry, 10 ComCtrls, ExtCtrls, SynEdit, SynHighlighterPas, 11 UProject, FileUtil, Menus, ActnList, UCoolDocking, 12 12 UCompiledForm, UCodeTreeForm, URegistry, ULastOpenedList, UApplicationInfo, 13 13 UDebugLog; … … 167 167 OpenKey(RegistryKey, True); 168 168 ReopenLastOpenedFile := ReadBoolWithDefault('ReopenLastOpenedFile', True); 169 ComboBoxProducer.ItemIndex := 170 ReadIntegerWithDefault('ProducerType', 0); 171 ComboBoxAnalyzer.ItemIndex := 172 ReadIntegerWithDefault('AnalyzerType', 0); 169 ComboBoxProducer.ItemIndex := ReadIntegerWithDefault('ProducerType', 0); 170 with ComboBoxProducer do 171 if (ItemIndex = -1) and (Items.Count > 0) then ItemIndex := 0; 172 ComboBoxAnalyzer.ItemIndex := ReadIntegerWithDefault('AnalyzerType', 0); 173 with ComboBoxAnalyzer do 174 if (ItemIndex = -1) and (Items.Count > 0) then ItemIndex := 0; 173 175 CheckBoxLogParsing.Checked := ReadBoolWithDefault('LogParsing', False); 174 176 finally
Note:
See TracChangeset
for help on using the changeset viewer.