Add missing setBackground methods to current adempiere comp

Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=3017921
This commit is contained in:
teo_sarca 2010-06-18 08:52:40 +00:00
parent 17469aca58
commit f22d7e2ed9
2 changed files with 12 additions and 0 deletions

View File

@ -324,5 +324,11 @@ public class CField extends JComboBox
super.firePropertyChange("DataChanged", m_oldValue, newValue);
m_oldValue = newValue;
} // // actionPerformed
@Override
public void setBackground(Color bg)
{
m_editor.setBackground(bg);
}
} // CField

View File

@ -626,4 +626,10 @@ public class VDate extends JComponent
}
} // fireActionPerformed
/**/
@Override
public void setBackground(Color bg)
{
m_text.setBackground(bg);
}
} // VDate