Ticket #42073: patch-ext-grid-cpp-editor.h.diff
File patch-ext-grid-cpp-editor.h.diff, 588 bytes (added by mojca (Mojca Miklavec), 11 years ago) |
---|
-
ext/grid/cpp/editor.h
old new public: 169 169 wxGridCellEditor::Show( show, attr ); 170 170 } 171 171 172 void PaintBackground( const wxRect& rect, wxGridCellAttr*attr )172 void PaintBackground( wxDC& dc, const wxRect& rect, wxGridCellAttr& attr ) 173 173 { 174 174 dTHX; 175 175 … … public: 191 191 FREETMPS; 192 192 LEAVE; 193 193 } else 194 wxGridCellEditor::PaintBackground( rect, attr );194 wxGridCellEditor::PaintBackground( dc, rect, attr ); 195 195 } 196 196 197 197 virtual wxGridCellEditor* Clone() const