diff --git a/D64Explorer.lpi b/D64Explorer.lpi index 8a88bf9..a75a44d 100644 --- a/D64Explorer.lpi +++ b/D64Explorer.lpi @@ -117,7 +117,7 @@ - + diff --git a/D64Explorer.res b/D64Explorer.res index 630c172..9e6f8dd 100644 Binary files a/D64Explorer.res and b/D64Explorer.res differ diff --git a/FrameD64ExplorerLibrary.lfm b/FrameD64ExplorerLibrary.lfm index f5a53ad..f029577 100644 --- a/FrameD64ExplorerLibrary.lfm +++ b/FrameD64ExplorerLibrary.lfm @@ -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 diff --git a/FrameD64ExplorerLibrary.pas b/FrameD64ExplorerLibrary.pas index 94d80a2..92cfbf6 100644 --- a/FrameD64ExplorerLibrary.pas +++ b/FrameD64ExplorerLibrary.pas @@ -7,7 +7,7 @@ interface uses Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls, StdCtrls, - IniFiles, D64ExplorerTypes, FrameD64ExplorerTask, VirtualTrees; + IniFiles, D64ExplorerTypes, FrameD64ExplorerTask, laz.VirtualTrees; type @@ -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; diff --git a/FrameD64ExplorerManage.lfm b/FrameD64ExplorerManage.lfm index dba412e..2536ca7 100644 --- a/FrameD64ExplorerManage.lfm +++ b/FrameD64ExplorerManage.lfm @@ -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 @@ -376,7 +376,7 @@ inherited D64ExplorerManageFrame: TD64ExplorerManageFrame OnDrawNode = VirtualDrawTree1DrawNode OnHeaderDrawQueryElements = VirtualDrawTree1HeaderDrawQueryElements end - object VirtualStringTree1: TVirtualStringTree + object VirtualStringTree1: TLazVirtualStringTree Left = 8 Height = 437 Top = 0 diff --git a/FrameD64ExplorerManage.pas b/FrameD64ExplorerManage.pas index e741d42..566ed37 100644 --- a/FrameD64ExplorerManage.pas +++ b/FrameD64ExplorerManage.pas @@ -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 @@ -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);