Ticket #42073: patch-ext-grid-cpp-editor.h.diff

File patch-ext-grid-cpp-editor.h.diff, 588 bytes (added by mojca (Mojca Miklavec), 10 years ago)
  • ext/grid/cpp/editor.h

    old new public: 
    169169            wxGridCellEditor::Show( show, attr );
    170170    }
    171171
    172     void PaintBackground( const wxRect& rect, wxGridCellAttr* attr )
     172    void PaintBackground( wxDC& dc, const wxRect& rect, wxGridCellAttr& attr )
    173173    {
    174174        dTHX;
    175175
    public: 
    191191            FREETMPS;
    192192            LEAVE;
    193193        } else
    194             wxGridCellEditor::PaintBackground( rect, attr );
     194            wxGridCellEditor::PaintBackground( dc, rect, attr );
    195195    }
    196196
    197197    virtual wxGridCellEditor* Clone() const