choices[0] = _("All");
choices[1] = _("Pages");
- m_fromText = (wxTextCtrl*)NULL;
- m_toText = (wxTextCtrl*)NULL;
- m_rangeRadioBox = (wxRadioBox *)NULL;
+ m_fromText = NULL;
+ m_toText = NULL;
+ m_rangeRadioBox = NULL;
if (m_printDialogData.GetFromPage() != 0)
{
m_rangeRadioBox = new wxRadioBox(this, wxPRINTID_RANGE, _("Print Range"),
wxDefaultPosition, wxDefaultSize,
- 2, choices,
- 1, wxRA_VERTICAL);
+ 2, choices);
m_rangeRadioBox->SetSelection(1);
mainsizer->Add( m_rangeRadioBox, 0, wxLEFT|wxTOP|wxRIGHT, 10 );