Added null check.
This commit is contained in:
parent
acebf0625a
commit
8f8f279cb9
|
@ -135,6 +135,11 @@ public class WLocatorEditor extends WEditor implements EventListener, PropertyCh
|
||||||
|
|
||||||
private void setValue (Object value, boolean fire)
|
private void setValue (Object value, boolean fire)
|
||||||
{
|
{
|
||||||
|
if(m_mLocator==null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (value != null)
|
if (value != null)
|
||||||
{
|
{
|
||||||
m_mLocator.setOnly_Warehouse_ID (getOnly_Warehouse_ID ());
|
m_mLocator.setOnly_Warehouse_ID (getOnly_Warehouse_ID ());
|
||||||
|
|
Loading…
Reference in New Issue