Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion D64Explorer.lpi
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
</RunParams>
<RequiredPackages Count="3">
<Item1>
<PackageName Value="virtualtreeview_package"/>
<PackageName Value="laz.virtualtreeview_package"/>
</Item1>
<Item2>
<PackageName Value="LazControls"/>
Expand Down
Binary file modified D64Explorer.res
Binary file not shown.
2 changes: 1 addition & 1 deletion FrameD64ExplorerLibrary.lfm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ inherited D64ExplorerLibraryFrame: TD64ExplorerLibraryFrame
ClientHeight = 256
ClientWidth = 664
TabOrder = 1
object VirtualStringTree1: TVirtualStringTree
object VirtualStringTree1: TLazVirtualStringTree
Left = 8
Height = 240
Top = 8
Expand Down
4 changes: 2 additions & 2 deletions FrameD64ExplorerLibrary.pas
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface

uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls, StdCtrls,
IniFiles, D64ExplorerTypes, FrameD64ExplorerTask, VirtualTrees;
IniFiles, D64ExplorerTypes, FrameD64ExplorerTask, laz.VirtualTrees;

type

Expand All @@ -19,7 +19,7 @@ TD64ExplorerLibraryFrame = class(TD64ExplorerTaskFrame)
Panel1: TPanel;
Panel2: TPanel;
Panel3: TPanel;
VirtualStringTree1: TVirtualStringTree;
VirtualStringTree1: TLazVirtualStringTree;
procedure PaintBox1Paint(Sender: TObject);
procedure VirtualStringTree1DblClick(Sender: TObject);
procedure VirtualStringTree1GetImageIndex(Sender: TBaseVirtualTree;
Expand Down
4 changes: 2 additions & 2 deletions FrameD64ExplorerManage.lfm
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ inherited D64ExplorerManageFrame: TD64ExplorerManageFrame
DoubleBuffered = True
ParentDoubleBuffered = False
TabOrder = 1
object VirtualDrawTree1: TVirtualDrawTree
object VirtualDrawTree1: TLazVirtualDrawTree
Cursor = 63
Left = 256
Height = 437
Expand Down Expand Up @@ -376,7 +376,7 @@ inherited D64ExplorerManageFrame: TD64ExplorerManageFrame
OnDrawNode = VirtualDrawTree1DrawNode
OnHeaderDrawQueryElements = VirtualDrawTree1HeaderDrawQueryElements
end
object VirtualStringTree1: TVirtualStringTree
object VirtualStringTree1: TLazVirtualStringTree
Left = 8
Height = 437
Top = 0
Expand Down
6 changes: 3 additions & 3 deletions FrameD64ExplorerManage.pas
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface

uses
Classes, SysUtils, Graphics, Forms, Controls, ExtCtrls, Menus, ActnList,
Buttons, IniFiles, VirtualTrees, C64D64Image, D64ExplorerTypes,
Buttons, IniFiles, laz.VirtualTrees, C64D64Image, D64ExplorerTypes,
FrameD64ExplorerTask;

type
Expand Down Expand Up @@ -74,8 +74,8 @@ TD64ExplorerManageFrame = class(TD64ExplorerTaskFrame)
SpeedButton8: TSpeedButton;
SpeedButton9: TSpeedButton;
Splitter1: TSplitter;
VirtualDrawTree1: TVirtualDrawTree;
VirtualStringTree1: TVirtualStringTree;
VirtualDrawTree1: TLazVirtualDrawTree;
VirtualStringTree1: TLazVirtualStringTree;
procedure ActionList1Update(AAction: TBasicAction; var Handled: Boolean
);
procedure ActManageAllPrgExecute(Sender: TObject);
Expand Down