* minor - null check.

This commit is contained in:
Heng Sin Low 2008-03-20 04:24:07 +00:00
parent 0423542a2f
commit f96221f0d3
1 changed files with 5 additions and 0 deletions

View File

@ -229,6 +229,11 @@ public class VLocator extends JComponent
*/
private void setValue (Object value, boolean fire)
{
if (m_mLocator == null)
{
return ;
}
if (value != null)
{
m_mLocator.setOnly_Warehouse_ID (getOnly_Warehouse_ID ());