Ticket #42073: patch-ext-grid-XS-GridCellEditor.xs.diff

File patch-ext-grid-XS-GridCellEditor.xs.diff, 500 bytes (added by mojca (Mojca Miklavec), 10 years ago)
  • ext/grid/XS/GridCellEditor.xs

    old new wxGridCellEditor::Show( show, attr ) 
    4848    wxGridCellAttr* attr
    4949
    5050void
    51 wxGridCellEditor::PaintBackground( rectCell, attr )
     51wxGridCellEditor::PaintBackground( dc, rectCell, attr )
     52    wxDC* dc
    5253    wxRect* rectCell
    5354    wxGridCellAttr* attr
    5455  CODE:
    55     THIS->PaintBackground( *rectCell, attr );
     56    THIS->PaintBackground( *dc, *rectCell, *attr );
    5657
    5758void
    5859wxGridCellEditor::BeginEdit( row, col, grid )