From 970205527b2a2e0b186be1e3295ae626fbbbf9cc Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Tue, 23 Feb 2016 13:53:32 -0500 Subject: [PATCH] Fix argument error, found using override! --- src/Tags.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tags.cpp b/src/Tags.cpp index dd6ab9046..97c8f4ee6 100644 --- a/src/Tags.cpp +++ b/src/Tags.cpp @@ -534,7 +534,7 @@ public: { } - virtual void PaintBackground(const wxRect& WXUNUSED(rectCell), wxGridCellAttr * WXUNUSED(attr)) + void PaintBackground(wxDC&, const wxRect& WXUNUSED(rectCell), const wxGridCellAttr & WXUNUSED(attr)) override { // Ignore it (a must on the Mac as the erasure causes problems.) }