From e2f316b19d05ad9c91ce591c0458a741a97def05 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 18 Aug 2020 01:16:45 +0200 Subject: [PATCH] Mention that wxEVT_GRID_RANGE_SELECT{ED,ING} are new in 3.1.5 Also explained that SELECTED is just the new spelling of SELECT. --- interface/wx/grid.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/interface/wx/grid.h b/interface/wx/grid.h index d1c2ede0ed..971cc52cca 100644 --- a/interface/wx/grid.h +++ b/interface/wx/grid.h @@ -6353,12 +6353,17 @@ public: @event{EVT_GRID_CMD_RANGE_SELECTING(id, func)} The user is selecting a group of contiguous cells; variant taking a window identifier. Processes a @c wxEVT_GRID_RANGE_SELECTING event type. + This event is available in wxWidgets 3.1.5 and later only. @event{EVT_GRID_RANGE_SELECTED(func)} The user selected a group of contiguous cells. Processes a @c wxEVT_GRID_RANGE_SELECTED event type. + This event is available in wxWidgets 3.1.5 and later only and was + called @c wxEVT_GRID_RANGE_SELECT in the previous versions. @event{EVT_GRID_CMD_RANGE_SELECTED(id, func)} The user selected a group of contiguous cells; variant taking a window identifier. Processes a @c wxEVT_GRID_RANGE_SELECTED event type. + This event is available in wxWidgets 3.1.5 and later only and was + called @c wxEVT_GRID_RANGE_SELECT in the previous versions. @endEventTable @library{wxcore}