From 3ccbee2e1c577ee75d0a2c74b7b926380dad7055 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 21 Sep 2020 15:05:35 +0200 Subject: [PATCH] Mark radio button group navigation functions as new in 3.1.5 Just add the missing "@since" lines. --- interface/wx/radiobut.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/interface/wx/radiobut.h b/interface/wx/radiobut.h index 98407b1f38..2bf6b22261 100644 --- a/interface/wx/radiobut.h +++ b/interface/wx/radiobut.h @@ -136,6 +136,8 @@ public: The return value is NULL if this button has the style @c wxRB_SINGLE. @see GetPreviousInGroup(), GetNextInGroup(), GetLastInGroup() + + @since 3.1.5 */ wxRadioButton* GetFirstInGroup(); @@ -145,6 +147,8 @@ public: The return value is NULL if this button has the style @c wxRB_SINGLE. @see GetFirstInGroup(), GetPreviousInGroup(), GetNextInGroup() + + @since 3.1.5 */ wxRadioButton* GetLastInGroup(); @@ -155,6 +159,8 @@ public: the style @c wxRB_SINGLE. @see GetFirstInGroup(), GetNextInGroup(), GetLastInGroup() + + @since 3.1.5 */ wxRadioButton* GetPreviousInGroup(); @@ -165,6 +171,8 @@ public: the style @c wxRB_SINGLE. @see GetFirstInGroup(), GetPreviousInGroup(), GetLastInGroup() + + @since 3.1.5 */ wxRadioButton* GetNextInGroup(); };