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);
|
super.firePropertyChange("DataChanged", m_oldValue, newValue);
|
||||||
m_oldValue = newValue;
|
m_oldValue = newValue;
|
||||||
} // // actionPerformed
|
} // // actionPerformed
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setBackground(Color bg)
|
||||||
|
{
|
||||||
|
m_editor.setBackground(bg);
|
||||||
|
}
|
||||||
|
|
||||||
} // CField
|
} // CField
|
||||||
|
|
|
@ -626,4 +626,10 @@ public class VDate extends JComponent
|
||||||
}
|
}
|
||||||
} // fireActionPerformed
|
} // fireActionPerformed
|
||||||
/**/
|
/**/
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setBackground(Color bg)
|
||||||
|
{
|
||||||
|
m_text.setBackground(bg);
|
||||||
|
}
|
||||||
} // VDate
|
} // VDate
|
Loading…
Reference in New Issue