wxGridCellBoolEditor uses string values for true and false internally
By default wxGridCellBoolEditor uses "1" for True and "" for False.
Therefore we must be sure that Table GetValue() returns a corresponding
value und SetValue() gets the correct value to be stored.
Thus wxGridCellBoolEditor stores now str(True) and str(False) which can
be easily converted from and to boolean
|