From f938aa996b0fa017ce9328d83acb81a9eb17c80a Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Thu, 9 Oct 2008 18:09:11 +0000 Subject: [PATCH] Blind guess fix for wxRB_SINGLE git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56202 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/radiobut.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gtk/radiobut.cpp b/src/gtk/radiobut.cpp index fc095b6538..3e7cea5d98 100644 --- a/src/gtk/radiobut.cpp +++ b/src/gtk/radiobut.cpp @@ -66,7 +66,7 @@ bool wxRadioButton::Create( wxWindow *parent, } GSList* radioButtonGroup = NULL; - if (!HasFlag(wxRB_GROUP)) + if (!HasFlag(wxRB_GROUP) && !HasFlag(wxRB_SINGLE)) { // search backward for last group start wxWindowList::compatibility_iterator node = parent->GetChildren().GetLast(); -- 2.45.2