]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/demo/wxRadioBox.py
and the compilation fix for the warning fixes
[wxWidgets.git] / utils / wxPython / demo / wxRadioBox.py
index dbd28fd5976f467a392d41a44bbc1625364d43b5..3fa4904172cdba56291a9eae829798b6f6277f38 100644 (file)
@@ -12,6 +12,11 @@ class TestRadioButtons(wxPanel):
                       'six', 'seven', 'eight']
 
         rb = wxRadioBox(self, 30, "wxRadioBox", wxPoint(35, 30), wxDefaultSize,
+                        sampleList, 3, wxRA_SPECIFY_COLS)
+        EVT_RADIOBOX(self, 30, self.EvtRadioBox)
+
+
+        rb = wxRadioBox(self, 30, "", wxPoint(35, 120), wxDefaultSize,
                         sampleList, 3, wxRA_SPECIFY_COLS | wxNO_BORDER)
         EVT_RADIOBOX(self, 30, self.EvtRadioBox)