[Webfunds-commits] java/webfunds/client AccountBrowserImpl.java
Ian Grigg
iang@cypherpunks.ai
Thu, 30 Nov 2000 13:12:27 -0400 (AST)
iang 00/11/30 13:12:27
Modified: webfunds/client AccountBrowserImpl.java
Log:
referenced wrong CODE_ variables, now in WalletInterface
(this did compile in some configurations but not in others...)
Revision Changes Path
1.82 +7 -6 java/webfunds/client/AccountBrowserImpl.java
Index: AccountBrowserImpl.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/client/AccountBrowserImpl.java,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- AccountBrowserImpl.java 2000/11/09 13:28:19 1.81
+++ AccountBrowserImpl.java 2000/11/30 17:12:27 1.82
@@ -1,5 +1,5 @@
/*
- * $Id: AccountBrowserImpl.java,v 1.81 2000/11/09 13:28:19 iang Exp $
+ * $Id: AccountBrowserImpl.java,v 1.82 2000/11/30 17:12:27 iang Exp $
*
* Copyright (c) Systemics Inc 1999 on behalf of
* the WebFunds Development Team. All Rights Reserved.
@@ -419,10 +419,11 @@
{
public void actionPerformed(ActionEvent evt)
{
- sendAdminEvent(SOXWallet.CODE_FREEZE, "backup being conducted");
+ sendAdminEvent(WalletInterface.CODE_FREEZE,
+ "backup being conducted");
File srcDir = new File(".");
webfunds.client.utils.Backup.backup(ui, srcDir);
- sendAdminEvent(SOXWallet.CODE_UNFREEZE, "backup complete");
+ sendAdminEvent(WalletInterface.CODE_UNFREEZE, "backup complete");
}
};
@@ -434,7 +435,7 @@
{
public void actionPerformed(ActionEvent evt)
{
- sendAdminEvent(SOXWallet.CODE_SHUTDOWN, "recovery being attempted");
+ sendAdminEvent(WalletInterface.CODE_SHUTDOWN, "recovery being attempted");
// Ouch! statics... but, recovery is "different"
webfunds.client.utils.Backup.recover(ui, Core.getUserDir());
ui.infoMessage("Exiting now, you will need to restart " + me);
@@ -449,7 +450,7 @@
{
public void actionPerformed(ActionEvent evt)
{
- sendAdminEvent(SOXWallet.CODE_FREEZE, "Yin");
+ sendAdminEvent(WalletInterface.CODE_FREEZE, "Yin");
}
};
@@ -460,7 +461,7 @@
{
public void actionPerformed(ActionEvent evt)
{
- sendAdminEvent(SOXWallet.CODE_UNFREEZE, "Yang");
+ sendAdminEvent(WalletInterface.CODE_UNFREEZE, "Yang");
}
};