Skip to content

Commit de1ae20

Browse files
author
César Cardoso
committed
bk/2023-10-17-0244
1 parent 8c6303f commit de1ae20

5 files changed

Lines changed: 7 additions & 9 deletions

File tree

Package/C4DWizard.dpk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,5 +130,4 @@ contains
130130
C4D.Wizard.UsesOrganization.ListOfUses in '..\Src\UsesOrganization\C4D.Wizard.UsesOrganization.ListOfUses.pas',
131131
C4D.Wizard.FormatSource.View in '..\Src\FormatSource\C4D.Wizard.FormatSource.View.pas' {C4DWizardFormatSourceView},
132132
C4D.Wizard.Notes.View in '..\Src\Notes\C4D.Wizard.Notes.View.pas' {C4DWizardNotesView};
133-
134133
end.

Src/Notes/C4D.Wizard.Notes.View.dfm

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ object C4DWizardNotesView: TC4DWizardNotesView
5151
Padding.Right = 2
5252
Padding.Bottom = 2
5353
TabOrder = 0
54-
ExplicitTop = 555
5554
object Bevel2: TBevel
5655
AlignWithMargins = True
5756
Left = 277
@@ -364,7 +363,6 @@ object C4DWizardNotesView: TC4DWizardNotesView
364363
Padding.Top = 2
365364
ParentBackground = False
366365
TabOrder = 1
367-
ExplicitHeight = 551
368366
object RichEdit: TRichEdit
369367
Left = 0
370368
Top = 2
@@ -385,7 +383,6 @@ object C4DWizardNotesView: TC4DWizardNotesView
385383
ScrollBars = ssVertical
386384
TabOrder = 0
387385
Zoom = 100
388-
ExplicitHeight = 549
389386
end
390387
end
391388
object ImageList1: TImageList

Src/Notes/C4D.Wizard.Notes.View.pas

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ interface
2020
Vcl.ExtCtrls,
2121
Vcl.ImgList,
2222
Vcl.Menus,
23-
DockForm;
23+
DockForm,
24+
DeskUtil;
2425

2526
type
2627
TC4DWizardNotesView = class(TDockableForm)
@@ -97,7 +98,6 @@ procedure C4DWizardNotesViewShowDockableForm;
9798
implementation
9899

99100
uses
100-
DeskUtil,
101101
C4D.Wizard.Utils,
102102
C4D.Wizard.Utils.OTA;
103103

@@ -133,7 +133,7 @@ procedure C4DWizardNotesViewShowDockableForm;
133133
constructor TC4DWizardNotesView.Create(AOwner: TComponent);
134134
begin
135135
inherited;
136-
DeskSection := Name;
136+
DeskSection := Self.Name;
137137
AutoSave := True;
138138
SaveStateNecessary := True;
139139
RichEdit.Lines.Clear;

Src/Reopen/C4D.Wizard.Reopen.View.dfm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ object C4DWizardReopenView: TC4DWizardReopenView
114114
Left = 10
115115
Top = 15
116116
Width = 127
117-
Height = 31
117+
Height = 21
118118
Cursor = crHandPoint
119119
Margins.Left = 10
120120
Margins.Top = 15

Src/Reopen/C4D.Wizard.Reopen.View.pas

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ interface
88
System.Classes,
99
System.Math,
1010
System.DateUtils,
11+
System.ImageList,
1112
Winapi.Windows,
1213
Vcl.Controls,
1314
Vcl.ExtCtrls,
@@ -17,6 +18,7 @@ interface
1718
Vcl.ComCtrls,
1819
Vcl.Menus,
1920
Vcl.Clipbrd,
21+
Vcl.ImgList,
2022
DockForm,
2123
C4D.Wizard.Types,
2224
C4D.Wizard.Utils.ListView;
@@ -195,7 +197,7 @@ procedure C4DWizardReopenViewShowDockableForm;
195197
constructor TC4DWizardReopenView.Create(AOwner: TComponent);
196198
begin
197199
inherited;
198-
DeskSection := Name;
200+
DeskSection := Self.Name;
199201
AutoSave := True;
200202
SaveStateNecessary := True;
201203
Self.ConfButtonCreate;

0 commit comments

Comments
 (0)