Browse Source

minor typo fix.

Ugochukwu Mmaduekwe 7 years ago
parent
commit
34fc7daf68

+ 1 - 0
src/gui/wizards/UWIZTransferAccount_Start.lfm

@@ -6,6 +6,7 @@ object WIZTransferAccount_Start: TWIZTransferAccount_Start
   Caption = 'WIZTransferAccount_Start'
   ClientHeight = 253
   ClientWidth = 429
+  LCLVersion = '1.8.1.0'
   Visible = False
   object grpTransferAccount: TGroupBox
     Left = 6

+ 2 - 2
src/gui/wizards/UWIZTransferAccount_Start.pas

@@ -14,7 +14,7 @@ interface
 uses
   Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
   ExtCtrls, UVisualGrid, UCommon.Data, UCellRenderers,
-  UWizard, UWIZTransferAccount, UWIZTransferAccount_Transaction, UWIZSendPASC_Confirmation;
+  UWizard, UWIZTransferAccount, UWIZTransferAccount_Transaction, UWIZTransferAccount_Confirmation;
 
 type
 
@@ -104,7 +104,7 @@ end;
 
 procedure TWIZTransferAccount_Start.OnNext;
 begin
-   UpdatePath(ptReplaceAllNext, [TWIZTransferAccount_Transaction, TWIZSendPASC_Confirmation]);
+   UpdatePath(ptReplaceAllNext, [TWIZTransferAccount_Transaction, TWIZTransferAccount_Confirmation]);
 end;
 
 end.