Browse Source

Use new units in gui-experimental

Added UPCOrderedLists, UPCDataTypes usage to gui-experimental
PascalCoin 6 years ago
parent
commit
3f96c14a5e

+ 2 - 1
src/gui-experimental/UFRMAccountExplorer.pas

@@ -212,7 +212,8 @@ implementation
 {$R *.lfm}
 
 uses UFRMAccountSelect, UConst, USettings, UFRMOperation,
-     UWallet, UCrypto, UFRMMemoText, UUserInterface, UCommon;
+     UWallet, UCrypto, UFRMMemoText, UUserInterface, UCommon,
+     UPCOrderedLists;
 
 { TFRMAccountExplorer }
 

+ 1 - 1
src/gui-experimental/UFRMAccountSelect.pas

@@ -26,7 +26,7 @@ uses
   LCLIntf, LCLType, LMessages,
   Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
   Dialogs, UAccounts, Grids, StdCtrls, Buttons, ExtCtrls, UCommon.UI,
-  UWallet, UNode, UGridUtils, UFRMMemoText, UConst, UThread;
+  UWallet, UNode, UGridUtils, UFRMMemoText, UConst, UThread, UPCOrderedLists;
 
 const
   CT_AS_MyAccounts = $0001;

+ 3 - 2
src/gui-experimental/UFRMOperation.pas

@@ -27,7 +27,8 @@ uses
   Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
   Dialogs, StdCtrls, UCommon.UI,
   UNode, UWallet, UCrypto, Buttons, UBlockChain, UBaseTypes,
-  UAccounts, UFRMAccountSelect, ActnList, ComCtrls, Types, UCommon;
+  UAccounts, UFRMAccountSelect, ActnList, ComCtrls, Types, UCommon,
+  UPCOrderedLists;
 
 Const
   CM_PC_WalletKeysChanged = WM_USER + 1;
@@ -177,7 +178,7 @@ type
 implementation
 
 uses
-  UECIES, UConst, UOpTransaction, UAES, UFRMWalletKeys, UUserInterface;
+  UECIES, UConst, UOpTransaction, UAES, UFRMWalletKeys, UUserInterface, UPCDataTypes;
 
 {$R *.lfm}
 

+ 2 - 1
src/gui-experimental/UUserInterface.pas

@@ -29,7 +29,8 @@ uses
   UBlockChain, UAccounts, UNode, UWallet, UConst, UFolderHelper, UGridUtils, URPC, UPoolMining,
   ULog, UThread, UNetProtocol, UCrypto, UBaseTypes,
   UFRMMainForm, UCTRLSyncronization, UFRMAccountExplorer, UFRMOperationExplorer, UFRMPendingOperations, UFRMOperation,
-  UFRMLogs, UFRMMessages, UFRMNodes, UFRMBlockExplorer, UFRMWalletKeys {$IFDEF TESTNET},UFRMRandomOperations, UAccountKeyStorage{$ENDIF};
+  UFRMLogs, UFRMMessages, UFRMNodes, UFRMBlockExplorer, UFRMWalletKeys,
+  UPCOrderedLists {$IFDEF TESTNET},UFRMRandomOperations, UAccountKeyStorage{$ENDIF};
 
 type
   { Forward Declarations }

+ 1 - 0
src/gui-experimental/core.utils/UCoreUtils.pas

@@ -135,6 +135,7 @@ uses
   UMemory,
   UNetProtocol,
   UOpTransaction,
+  UPCOrderedLists,
   Generics.Collections;
 
 { TCoreTool }