Just a note on the diff for wxGridER.pm
The Wx::Grid->SetReadOnly() method takes its params in an odd order (Y
axis first), so I changed the code from
$this->SetReadOnly( $x, $y );
to
$this->SetReadOnly( $y, $x, 1 ); # cols, rows
The comments I added, intended to clarify the odd order - are in fact
wrong and should be
$this->SetReadOnly( $y, $x, 1 ); # rows, cols
Grrrrrrrr
Mark
|