GridCtrl: Added missing method: SetDisplay(int r, int c, GridDisplay& gd)

git-svn-id: svn://ultimatepp.org/upp/trunk@5615 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
unodgs 2012-12-02 15:04:48 +00:00
parent bbca44affe
commit 761a7aba00

View file

@ -8115,6 +8115,11 @@ void GridCtrl::ColumnWidths(const char* s)
hitems[i + fixed_cols].Width(atoi(w[i]));
}
void GridCtrl::SetDisplay(int r, int c, GridDisplay& gd)
{
GetItem(r + fixed_rows, c + fixed_cols).SetDisplay(gd);
}
#ifdef flagGRIDSQL
void GridCtrl::FieldLayout(FieldOperator& f)
{