+ wxWindow::ChangeFont(keepOriginalSize);
+
+ XmFontList fontList = (XmFontList) m_windowFont.GetFontList(1.0, XtDisplay((Widget) GetTopWidget()));
+
+ int i;
+ for (i = 0; i < m_noItems; i++)
+ {
+ WXWidget radioButton = m_radioButtons[i];
+
+ XtVaSetValues ((Widget) radioButton,
+ XmNfontList, fontList,
+ XmNtopAttachment, XmATTACH_FORM,
+ NULL);
+ }