Skip to content

Commit

Permalink
Move shared but self-contained and generally useful units to Components.
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnlaan committed Aug 5, 2024
1 parent 7d3b4aa commit e5d46b1
Show file tree
Hide file tree
Showing 35 changed files with 55 additions and 55 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
unit Shared.BrowseFunc;
unit BrowseFunc;

{
Inno Setup
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
unit Shared.SafeDLLPath;
unit SafeDLLPath;

{
Inno Setup
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
unit Shared.SimpleExpression;
unit SimpleExpression;

{
Inno Setup
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
unit Shared.TaskbarProgressFunc;
unit TaskbarProgressFunc;

{
Inno Setup
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
unit Shared.UIStateForm;
unit UIStateForm;

{
Inno Setup
Expand Down
8 changes: 4 additions & 4 deletions Projects/Compil32.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ program Compil32;
}

uses
Shared.SafeDLLPath in 'Src\Shared.SafeDLLPath.pas',
SafeDLLPath in '..\Components\SafeDLLPath.pas',
Windows,
SysUtils,
Forms,
Expand All @@ -29,7 +29,7 @@ uses
NewUxTheme.TmSchema in '..\Components\NewUxTheme.TmSchema.pas',
NewUxTheme in '..\Components\NewUxTheme.pas',
Shared.DebugStruct in 'Src\Shared.DebugStruct.pas',
Shared.BrowseFunc in 'Src\Shared.BrowseFunc.pas',
BrowseFunc in '..\Components\BrowseFunc.pas',
IDE.SignToolsForm in 'Src\IDE.SignToolsForm.pas' {SignToolsForm},
IDE.InputQueryComboForm in 'Src\IDE.InputQueryComboForm.pas',
ScintInt in '..\Components\ScintInt.pas',
Expand All @@ -46,9 +46,9 @@ uses
DropListBox in '..\Components\DropListBox.pas',
NewCheckListBox in '..\Components\NewCheckListBox.pas',
NewNotebook in '..\Components\NewNotebook.pas',
Shared.TaskbarProgressFunc in 'Src\Shared.TaskbarProgressFunc.pas',
TaskbarProgressFunc in '..\Components\TaskbarProgressFunc.pas',
IDE.HtmlHelpFunc in 'Src\IDE.HtmlHelpFunc.pas',
Shared.UIStateForm in 'Src\Shared.UIStateForm.pas',
UIStateForm in '..\Components\UIStateForm.pas',
Shared.LangOptionsSectionDirectives in 'Src\Shared.LangOptionsSectionDirectives.pas',
Shared.SetupMessageIDs in 'Src\Shared.SetupMessageIDs.pas',
Shared.SetupSectionDirectives in 'Src\Shared.SetupSectionDirectives.pas',
Expand Down
8 changes: 4 additions & 4 deletions Projects/Compil32.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<DelphiCompile Include="$(MainSource)">
<MainSource>MainSource</MainSource>
</DelphiCompile>
<DCCReference Include="Src\Shared.SafeDLLPath.pas"/>
<DCCReference Include="..\Components\SafeDLLPath.pas"/>
<DCCReference Include="..\Components\PathFunc.pas"/>
<DCCReference Include="Src\IDE.CompileForm.pas">
<Form>CompileForm</Form>
Expand All @@ -101,7 +101,7 @@
<DCCReference Include="..\Components\NewUxTheme.TmSchema.pas"/>
<DCCReference Include="..\Components\NewUxTheme.pas"/>
<DCCReference Include="Src\Shared.DebugStruct.pas"/>
<DCCReference Include="Src\Shared.BrowseFunc.pas"/>
<DCCReference Include="..\Components\BrowseFunc.pas"/>
<DCCReference Include="Src\IDE.SignToolsForm.pas">
<Form>SignToolsForm</Form>
</DCCReference>
Expand All @@ -124,9 +124,9 @@
<DCCReference Include="..\Components\DropListBox.pas"/>
<DCCReference Include="..\Components\NewCheckListBox.pas"/>
<DCCReference Include="..\Components\NewNotebook.pas"/>
<DCCReference Include="Src\Shared.TaskbarProgressFunc.pas"/>
<DCCReference Include="..\Components\TaskbarProgressFunc.pas"/>
<DCCReference Include="Src\IDE.HtmlHelpFunc.pas"/>
<DCCReference Include="Src\Shared.UIStateForm.pas"/>
<DCCReference Include="..\Components\UIStateForm.pas"/>
<DCCReference Include="Src\Shared.LangOptionsSectionDirectives.pas"/>
<DCCReference Include="Src\Shared.SetupMessageIDs.pas"/>
<DCCReference Include="Src\Shared.SetupSectionDirectives.pas"/>
Expand Down
2 changes: 1 addition & 1 deletion Projects/ISCC.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ program ISCC;
into this program and not depend on ISCmplr.dll. }

uses
Shared.SafeDLLPath in 'Src\Shared.SafeDLLPath.pas',
SafeDLLPath in '..\Components\SafeDLLPath.pas',
Windows,
SysUtils,
Classes,
Expand Down
2 changes: 1 addition & 1 deletion Projects/ISCC.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<DelphiCompile Include="$(MainSource)">
<MainSource>MainSource</MainSource>
</DelphiCompile>
<DCCReference Include="Src\Shared.SafeDLLPath.pas"/>
<DCCReference Include="..\Components\SafeDLLPath.pas"/>
<DCCReference Include="Src\ISCmplr\ISCmplr.Compile.pas"/>
<DCCReference Include="..\Components\PathFunc.pas"/>
<DCCReference Include="Src\Shared.CommonFunc.pas"/>
Expand Down
4 changes: 2 additions & 2 deletions Projects/ISCmplr.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ library ISCmplr;
}

uses
Shared.SafeDLLPath in 'Src\Shared.SafeDLLPath.pas',
SafeDLLPath in '..\Components\SafeDLLPath.pas',
SysUtils,
Shared.CompilerInt in 'Src\Shared.CompilerInt.pas',
Shared.PreprocInt in 'Src\Shared.PreprocInt.pas',
Expand Down Expand Up @@ -40,7 +40,7 @@ uses
Shared.SetupEntFunc in 'Src\Shared.SetupEntFunc.pas',
Shared.SetupSectionDirectives in 'Src\Shared.SetupSectionDirectives.pas',
Shared.SetupTypes in 'Src\Shared.SetupTypes.pas',
Shared.SimpleExpression in 'Src\Shared.SimpleExpression.pas',
SimpleExpression in '..\Components\SimpleExpression.pas',
MD5 in '..\Components\MD5.pas',
Shared.DotNetVersion in 'Src\Shared.DotNetVersion.pas';

Expand Down
4 changes: 2 additions & 2 deletions Projects/ISCmplr.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<DelphiCompile Include="$(MainSource)">
<MainSource>MainSource</MainSource>
</DelphiCompile>
<DCCReference Include="Src\Shared.SafeDLLPath.pas"/>
<DCCReference Include="..\Components\SafeDLLPath.pas"/>
<DCCReference Include="Src\Shared.CompilerInt.pas"/>
<DCCReference Include="Src\Shared.PreprocInt.pas"/>
<DCCReference Include="Src\Compiler.Compile.pas"/>
Expand Down Expand Up @@ -106,7 +106,7 @@
<DCCReference Include="Src\Shared.SetupEntFunc.pas"/>
<DCCReference Include="Src\Shared.SetupSectionDirectives.pas"/>
<DCCReference Include="Src\Shared.SetupTypes.pas"/>
<DCCReference Include="Src\Shared.SimpleExpression.pas"/>
<DCCReference Include="..\Components\SimpleExpression.pas"/>
<DCCReference Include="..\Components\MD5.pas"/>
<DCCReference Include="Src\Shared.DotNetVersion.pas"/>
<BuildConfiguration Include="Base">
Expand Down
10 changes: 5 additions & 5 deletions Projects/Setup.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ program Setup;
}

uses
Shared.SafeDLLPath in 'Src\Shared.SafeDLLPath.pas',
SafeDLLPath in '..\Components\SafeDLLPath.pas',
Setup.XPTheme in 'Src\Setup.XPTheme.pas',
Forms,
Windows,
Expand Down Expand Up @@ -53,11 +53,11 @@ uses
Setup.Uninstall in 'Src\Setup.Uninstall.pas',
Setup.UninstallProgressForm in 'Src\Setup.UninstallProgressForm.pas' {UninstallProgressForm},
Setup.UninstallSharedFileForm in 'Src\Setup.UninstallSharedFileForm.pas' {UninstallSharedFileForm},
Shared.SimpleExpression in 'Src\Shared.SimpleExpression.pas',
Shared.UIStateForm in 'Src\Shared.UIStateForm.pas',
SimpleExpression in '..\Components\SimpleExpression.pas',
UIStateForm in '..\Components\UIStateForm.pas',
Setup.SetupForm in 'Src\Setup.SetupForm.pas',
Setup.RegSvr in 'Src\Setup.RegSvr.pas',
Shared.BrowseFunc in 'Src\Shared.BrowseFunc.pas',
BrowseFunc in '..\Components\BrowseFunc.pas',
Setup.RedirFunc in 'Src\Setup.RedirFunc.pas',
Setup.SecurityFunc in 'Src\Setup.SecurityFunc.pas',
Setup.Helper in 'Src\Setup.Helper.pas',
Expand All @@ -82,7 +82,7 @@ uses
RestartManager in '..\Components\RestartManager.pas',
Resample in '..\Components\Resample.pas',
ASMInline in '..\Components\ASMInline.pas',
Shared.TaskbarProgressFunc in 'Src\Shared.TaskbarProgressFunc.pas',
TaskbarProgressFunc in '..\Components\TaskbarProgressFunc.pas',
Setup.DotNetFunc in 'Src\Setup.DotNetFunc.pas',
Shared.SetupEntFunc in 'Src\Shared.SetupEntFunc.pas',
Setup.MsiFunc in 'Src\Setup.MsiFunc.pas',
Expand Down
10 changes: 5 additions & 5 deletions Projects/Setup.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<DelphiCompile Include="$(MainSource)">
<MainSource>MainSource</MainSource>
</DelphiCompile>
<DCCReference Include="Src\Shared.SafeDLLPath.pas"/>
<DCCReference Include="..\Components\SafeDLLPath.pas"/>
<DCCReference Include="Src\Setup.XPTheme.pas"/>
<DCCReference Include="..\Components\RichEditViewer.pas"/>
<DCCReference Include="Src\Shared.CommonFunc.Vcl.pas"/>
Expand Down Expand Up @@ -126,11 +126,11 @@
<DCCReference Include="Src\Setup.UninstallSharedFileForm.pas">
<Form>UninstallSharedFileForm</Form>
</DCCReference>
<DCCReference Include="Src\Shared.SimpleExpression.pas"/>
<DCCReference Include="Src\Shared.UIStateForm.pas"/>
<DCCReference Include="..\Components\SimpleExpression.pas"/>
<DCCReference Include="..\Components\UIStateForm.pas"/>
<DCCReference Include="Src\Setup.SetupForm.pas"/>
<DCCReference Include="Src\Setup.RegSvr.pas"/>
<DCCReference Include="Src\Shared.BrowseFunc.pas"/>
<DCCReference Include="..\Components\BrowseFunc.pas"/>
<DCCReference Include="Src\Setup.RedirFunc.pas"/>
<DCCReference Include="Src\Setup.SecurityFunc.pas"/>
<DCCReference Include="Src\Setup.Helper.pas"/>
Expand All @@ -155,7 +155,7 @@
<DCCReference Include="..\Components\RestartManager.pas"/>
<DCCReference Include="..\Components\Resample.pas"/>
<DCCReference Include="..\Components\ASMInline.pas"/>
<DCCReference Include="Src\Shared.TaskbarProgressFunc.pas"/>
<DCCReference Include="..\Components\TaskbarProgressFunc.pas"/>
<DCCReference Include="Src\Setup.DotNetFunc.pas"/>
<DCCReference Include="Src\Shared.SetupEntFunc.pas"/>
<DCCReference Include="Src\Setup.MsiFunc.pas"/>
Expand Down
2 changes: 1 addition & 1 deletion Projects/SetupLdr.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ program SetupLdr;
}

uses
Shared.SafeDLLPath in 'Src\Shared.SafeDLLPath.pas',
SafeDLLPath in '..\Components\SafeDLLPath.pas',
Setup.XPTheme in 'Src\Setup.XPTheme.pas',
Windows,
Messages,
Expand Down
2 changes: 1 addition & 1 deletion Projects/SetupLdr.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<DelphiCompile Include="$(MainSource)">
<MainSource>MainSource</MainSource>
</DelphiCompile>
<DCCReference Include="Src\Shared.SafeDLLPath.pas"/>
<DCCReference Include="..\Components\SafeDLLPath.pas"/>
<DCCReference Include="Src\Setup.XPTheme.pas"/>
<DCCReference Include="Src\Compression.Base.pas"/>
<DCCReference Include="Src\Compression.LZMA1SmallDecompressor.pas"/>
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/Compiler.Compile.pas
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ implementation
{$IFDEF STATICPREPROC}
IsppPreprocess,
{$ENDIF}
Compiler.ScriptCompiler, Shared.SimpleExpression, Shared.SetupTypes;
Compiler.ScriptCompiler, SimpleExpression, Shared.SetupTypes;

type
TParamInfo = record
Expand Down
6 changes: 3 additions & 3 deletions Projects/Src/IDE.CompileForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interface

uses
Windows, Messages, SysUtils, Classes, Contnrs, Graphics, Controls, Forms, Dialogs, CommDlg,
Generics.Collections, Shared.UIStateForm, StdCtrls, ExtCtrls, Menus, Buttons, ComCtrls, CommCtrl,
Generics.Collections, UIStateForm, StdCtrls, ExtCtrls, Menus, Buttons, ComCtrls, CommCtrl,
ScintInt, ScintEdit, IDE.ScintStylerInnoSetup, NewTabSet, ModernColors, IDE.CompScintEdit,
Shared.DebugStruct, Shared.CompilerInt, NewUxTheme, ImageList, ImgList, ToolWin, IDE.HelperFunc,
VirtualImageList, BaseImageCollection, ImageCollection;
Expand Down Expand Up @@ -651,8 +651,8 @@ implementation
uses
ActiveX, Clipbrd, ShellApi, ShlObj, IniFiles, Registry, Consts, Types, UITypes,
Math, StrUtils, WideStrUtils,
PathFunc, Shared.CommonFunc.Vcl, Shared.CommonFunc, Shared.FileClass, IDE.Messages, NewUxTheme.TmSchema, Shared.BrowseFunc,
IDE.HtmlHelpFunc, Shared.TaskbarProgressFunc,
PathFunc, Shared.CommonFunc.Vcl, Shared.CommonFunc, Shared.FileClass, IDE.Messages, NewUxTheme.TmSchema, BrowseFunc,
IDE.HtmlHelpFunc, TaskbarProgressFunc,
{$IFDEF STATICCOMPILER} Compile, {$ENDIF}
IDE.OptionsForm, IDE.StartupForm, IDE.Wizard.WizardForm, IDE.SignToolsForm,
Shared.ConfigIniFile, Shared.SignToolsFunc, IDE.InputQueryComboForm, IDE.MsgBoxDesignerForm,
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/IDE.FilesDesignerForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface

uses
Classes, Controls, Forms, Dialogs, ExtCtrls, StdCtrls,
Shared.UIStateForm, NewStaticText, DropListBox, IDE.Wizard.WizardFormFilesHelper;
UIStateForm, NewStaticText, DropListBox, IDE.Wizard.WizardFormFilesHelper;

type
TFilesDesignerForm = class(TUIStateForm)
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/IDE.InputQueryComboForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
interface

uses
Classes, Controls, StdCtrls, Shared.UIStateForm;
Classes, Controls, StdCtrls, UIStateForm;

type
TInputQueryComboForm = class(TUIStateForm)
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/IDE.MsgBoxDesignerForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface

uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Shared.UIStateForm, StdCtrls, ExtCtrls, NewStaticText, ComCtrls, pngimage;
UIStateForm, StdCtrls, ExtCtrls, NewStaticText, ComCtrls, pngimage;

type
TMsgBoxDesignerForm = class(TUIStateForm)
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/IDE.OptionsForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface

uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Shared.UIStateForm, StdCtrls, ExtCtrls, NewStaticText;
UIStateForm, StdCtrls, ExtCtrls, NewStaticText;

type
TOptionsForm = class(TUIStateForm)
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/IDE.SignToolsForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
interface

uses
Classes, Controls, StdCtrls, Shared.UIStateForm;
Classes, Controls, StdCtrls, UIStateForm;

type
TSignToolsForm = class(TUIStateForm)
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/IDE.StartupForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface

uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Shared.UIStateForm, StdCtrls, ExtCtrls;
UIStateForm, StdCtrls, ExtCtrls;

type
TStartupFormResult = (srNone, srEmpty, srWizard, srOpenFile, srOpenDialog,
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/IDE.Wizard.WizardFileForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface

uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Shared.UIStateForm, StdCtrls, ExtCtrls, NewStaticText;
UIStateForm, StdCtrls, ExtCtrls, NewStaticText;

type

Expand Down
4 changes: 2 additions & 2 deletions Projects/Src/IDE.Wizard.WizardForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface

uses
Windows, Forms, Classes, Graphics, StdCtrls, ExtCtrls, Controls, Dialogs, pngimage,
Shared.UIStateForm, NewStaticText, DropListBox, NewCheckListBox, NewNotebook,
UIStateForm, NewStaticText, DropListBox, NewCheckListBox, NewNotebook,
IDE.Wizard.WizardFormFilesHelper, IDE.Wizard.WizardFormRegistryHelper;

type
Expand Down Expand Up @@ -187,7 +187,7 @@ implementation

uses
SysUtils, ShlObj, ActiveX, UITypes, Shared.FileClass,
PathFunc, Shared.CommonFunc.Vcl, Shared.CommonFunc, IDE.HelperFunc, Shared.BrowseFunc,
PathFunc, Shared.CommonFunc.Vcl, Shared.CommonFunc, IDE.HelperFunc, BrowseFunc,
IDE.Messages, IDE.Wizard.WizardFileForm;

type
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/IDE.Wizard.WizardFormFilesHelper.pas
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ implementation

uses
SysUtils, UITypes,
Shared.CommonFunc.Vcl, Shared.CommonFunc, Shared.BrowseFunc, PathFunc,
Shared.CommonFunc.Vcl, Shared.CommonFunc, BrowseFunc, PathFunc,
IDE.Messages, IDE.Wizard.WizardFileForm;

constructor TWizardFormFilesHelper.Create(const Form: TForm;
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/IDE.Wizard.WizardFormRegistryHelper.pas
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ implementation
uses
Windows, Classes, SysUtils, StrUtils, TypInfo, Graphics, UITypes,
ComCtrls,
IDE.CompileForm, IDE.HelperFunc, IDE.Messages, Shared.BrowseFunc, Shared.CommonFunc, IDE.HtmlHelpFunc;
IDE.CompileForm, IDE.HelperFunc, IDE.Messages, BrowseFunc, Shared.CommonFunc, IDE.HtmlHelpFunc;

{ TWizardFormRegistryHelper }

Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/Setup.Install.pas
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ implementation
Setup.MainForm, Setup.LoggingFunc, Setup.FileExtractor, Shared.FileClass,
Compression.Base, SHA1, PathFunc, Shared.CommonFunc.Vcl, Shared.CommonFunc, Setup.RedirFunc, Shared.Int64Em, Shared.SetupMessageIDs,
Setup.WizardForm, Shared.DebugStruct, Setup.DebugClient, Shared.VerInfoFunc, Setup.ScriptRunner, Setup.RegDLL, Setup.Helper,
Shared.ResUpdateFunc, Setup.DotNetFunc, Shared.TaskbarProgressFunc, NewProgressBar, RestartManager,
Shared.ResUpdateFunc, Setup.DotNetFunc, TaskbarProgressFunc, NewProgressBar, RestartManager,
Net.HTTPClient, Net.URLClient, NetEncoding, RegStr;

type
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/Setup.MainForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ implementation
Setup.Messages, Shared.SetupMessageIDs, Setup.Install, Setup.InstFunc, Setup.InstFunc.Ole, Setup.RedirFunc, PathFunc,
Compression.Base, Compression.Zlib, Compression.bzlib, Compression.LZMADecompressor, Shared.ArcFour, Shared.SetupEntFunc, Setup.SelectLanguageForm,
Setup.WizardForm, Setup.DebugClient, Shared.VerInfoFunc, Setup.FileExtractor, Shared.FileClass, Setup.LoggingFunc, MD5, SHA1, ActiveX,
Shared.SimpleExpression, Setup.Helper, Setup.SpawnClient, Setup.SpawnServer, Setup.DotNetFunc, BitmapImage,
SimpleExpression, Setup.Helper, Setup.SpawnClient, Setup.SpawnServer, Setup.DotNetFunc, BitmapImage,
Shared.TaskDialogFunc, RegStr;

{$R *.DFM}
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/Setup.NewDiskForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function SelectDisk(const DiskNumber: Integer; const AFilename: String; var Path
implementation

uses
Setup.Messages, Shared.SetupMessageIDs, PathFunc, Shared.CommonFunc.Vcl, Shared.CommonFunc, Shared.BrowseFunc,
Setup.Messages, Shared.SetupMessageIDs, PathFunc, Shared.CommonFunc.Vcl, Shared.CommonFunc, BrowseFunc,
Setup.MainForm, Setup.WizardForm;

{$R *.DFM}
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/Setup.ScriptClasses.pas
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ implementation
uPSR_std, uPSR_classes, uPSR_graphics, uPSR_controls, uPSR_forms,
uPSR_stdctrls, uPSR_extctrls, uPSR_comobj,
NewStaticText, NewCheckListBox, NewProgressBar, RichEditViewer,
ExtCtrls, Shared.UIStateForm, Setup.SetupForm, Setup.MainForm, Setup.WizardForm, Shared.SetupTypes, PasswordEdit,
ExtCtrls, UIStateForm, Setup.SetupForm, Setup.MainForm, Setup.WizardForm, Shared.SetupTypes, PasswordEdit,
FolderTreeView, BitmapImage, NewNotebook, Setup.ScriptDlg, BidiCtrls,
Setup.UninstallProgressForm;

Expand Down
Loading

0 comments on commit e5d46b1

Please sign in to comment.