From 9311dc8ffb25d97fe312b8405fd5dd1234e7b4d8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 3 Nov 2020 03:14:43 +0100 Subject: [PATCH] Remove redundant wxGridCellDateTimeRenderer::SetParameters() docs This function is inherited from wxGridCellDateRenderer since the changes of 659ab78c6d (Add support for editing dates (without time) to wxGrid, 2018-09-06), so there is no need to document it separately. --- interface/wx/grid.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/interface/wx/grid.h b/interface/wx/grid.h index 4ef30b65ce..3a6129a3f6 100644 --- a/interface/wx/grid.h +++ b/interface/wx/grid.h @@ -248,16 +248,6 @@ public: */ wxGridCellDateTimeRenderer(const wxString& outformat = wxDefaultDateTimeFormat, const wxString& informat = wxDefaultDateTimeFormat); - - - /** - Sets the strptime()-like format string which will be used to parse - the date/time. - - @param params - strptime()-like format string used to parse the date/time. - */ - virtual void SetParameters(const wxString& params); }; /**