From 761a7aba00424d88fc98d2bc53d79adb073ff862 Mon Sep 17 00:00:00 2001 From: unodgs Date: Sun, 2 Dec 2012 15:04:48 +0000 Subject: [PATCH] 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 --- uppsrc/GridCtrl/GridCtrl.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/uppsrc/GridCtrl/GridCtrl.cpp b/uppsrc/GridCtrl/GridCtrl.cpp index 5622272f3..fbcbe2e42 100644 --- a/uppsrc/GridCtrl/GridCtrl.cpp +++ b/uppsrc/GridCtrl/GridCtrl.cpp @@ -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) {