Fixed wrong variable declaration - should be instance instead of static.

This commit is contained in:
Heng Sin Low 2011-02-14 12:21:20 +08:00
parent 765ba3d6d7
commit bc5fffb793
1 changed files with 6 additions and 6 deletions

View File

@ -58,10 +58,10 @@ public class WDocActionPanel extends Window implements EventListener
private Label label;
private Listbox lstDocAction;
private static GridTab gridTab;
private static String[] s_value = null;
private static String[] s_name;
private static String[] s_description;
private GridTab gridTab;
private String[] s_value = null;
private String[] s_name;
private String[] s_description;
private String DocStatus;
private String DocAction;
private int m_AD_Table_ID;