Reverting these two lines from revision 4185

They are not working with latest change of revision 4194
This commit is contained in:
Carlos Ruiz 2008-01-15 03:25:00 +00:00
parent 529901a54d
commit 74db7ec57a
1 changed files with 2 additions and 4 deletions

View File

@ -498,8 +498,7 @@ public class VLookup extends JComponent
if (notFound) // <key>
{
m_value = null;
if (!m_inserting)
actionCombo (null); // data binding
actionCombo (null); // data binding
log.fine(m_columnName + "=" + value + ": Not found");
}
// we have lookup
@ -518,8 +517,7 @@ public class VLookup extends JComponent
if (m_combo.getSelectedItem() == null)
{
log.info(m_columnName + "=" + value + ": not in Lookup - set to NULL");
if (!m_inserting)
actionCombo (null); // data binding (calls setValue again)
actionCombo (null); // data binding (calls setValue again)
m_value = null;
}
}