Fixed wrong variable declaration - should be instance instead of static.
This commit is contained in:
parent
765ba3d6d7
commit
bc5fffb793
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue