panel->SetHelpText( wxT( "Panel with some Radio Buttons" ) );
#endif
- wxString animals[] =
+ wxString animals[] =
{ wxT("Fox"), wxT("Hare"), wxT("Rabbit"),
wxT("Sabre-toothed tiger"), wxT("T Rex") };
wxRadioBox *radiobox1 = new wxRadioBox(panel, wxID_ANY, wxT("Choose one"),
wxDefaultPosition, wxDefaultSize, 5, animals, 2, wxRA_SPECIFY_ROWS);
- wxString computers[] =
+ wxString computers[] =
{ wxT("Amiga"), wxT("Commodore 64"), wxT("PET"),
wxT("Another") };
#endif
(void) new wxStaticText( panel, wxID_ANY,
- wxT("This page intentionally left blank"),
+ wxT("This page intentionally left blank"),
wxPoint(10, 10) );
return panel;
panel->SetBackgroundColour( wxColour( wxT("MAROON") ) );
(void) new wxStaticText( panel, wxID_ANY,
- wxT("This page has been inserted, not added."),
+ wxT("This page has been inserted, not added."),
wxPoint(10, 10) );
return panel;
m_sizerFrame->Layout();
}
-void MyFrame::AddFlagStrIfFlagPresent(wxString & flagStr, long flags, long flag,
+void MyFrame::AddFlagStrIfFlagPresent(wxString & flagStr, long flags, long flag,
const wxChar * flagName) const
{
if( (flags & flag) == flag )