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:
parent
17469aca58
commit
f22d7e2ed9
|
@ -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
|
||||
|
|
|
@ -626,4 +626,10 @@ public class VDate extends JComponent
|
|||
}
|
||||
} // fireActionPerformed
|
||||
/**/
|
||||
|
||||
@Override
|
||||
public void setBackground(Color bg)
|
||||
{
|
||||
m_text.setBackground(bg);
|
||||
}
|
||||
} // VDate
|
Loading…
Reference in New Issue