From 7bf00e1161e5bf8f7a09892e10489fa85e56d699 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Mon, 21 Sep 2020 09:02:06 +0200 Subject: [PATCH] Added info about wxRB_SINGLE --- interface/wx/radiobut.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/interface/wx/radiobut.h b/interface/wx/radiobut.h index 0257bc31ce..3ae7778152 100644 --- a/interface/wx/radiobut.h +++ b/interface/wx/radiobut.h @@ -125,6 +125,8 @@ public: /** Returns the first radio button of the @c wxRB_GROUP this instance is in. + The return value is NULL if this button has the style @c wxRB_SINGLE. + @see GetPreviousInGroup(), GetNextInGroup(), GetLastInGroup() */ wxRadioButton* GetFirstInGroup(); @@ -132,6 +134,8 @@ public: /** Returns the last radio button of the @c wxRB_GROUP this instance is in. + The return value is NULL if this button has the style @c wxRB_SINGLE. + @see GetFirstInGroup(), GetPreviousInGroup(), GetNextInGroup() */ wxRadioButton* GetLastInGroup(); @@ -139,6 +143,9 @@ public: /** Returns the previous radio button of the @c wxRB_GROUP this instance is in. + The return value is NULL if there is no predecessor or this button has + the style @c wxRB_SINGLE. + @see GetFirstInGroup(), GetNextInGroup(), GetLastInGroup() */ wxRadioButton* GetPreviousInGroup(); @@ -146,6 +153,9 @@ public: /** Returns the next radio button of the @c wxRB_GROUP this instance is in. + The return value is NULL if there is no successor or this button has + the style @c wxRB_SINGLE. + @see GetFirstInGroup(), GetPreviousInGroup(), GetLastInGroup() */ wxRadioButton* GetNextInGroup();