Problem: 1381520

Title: (TGridView) Capsule fNumOfRows, fNumOfCols...

Received: Aug 22 1996 3:49PM


Most data members in TGridView are public. But we can not set the some member values by this:
    fNumOfRows = 200;
    fNumOfCols = 200;
    fColWidths = 20;
    fRowHeights = 16;
They don't work, and have side affection. Those data members should be private or protected.
Fix:

All data members of TGridView and its (MacApp) subclasses are now protected.