yPos += 35;
- wxString choices[2];
+ wxString *choices = new wxString[2];
choices[0] = _("All");
choices[1] = _("Pages");
// Calls wxWindow::OnInitDialog and then wxGenericPrintDialog::TransferDataToWindow
InitDialog();
+ delete[] choices;
}
int wxGenericPrintDialog::ShowModal(void)
{
if (!fromText) return;
- if (event.GetInt() == 1)
+ if (event.GetInt() == 0)
{
fromText->Enable(FALSE);
toText->Enable(FALSE);
}
- else if (event.GetInt() == 0)
+ else if (event.GetInt() == 1)
{
fromText->Enable(TRUE);
toText->Enable(TRUE);
paperTypeChoice = CreatePaperTypeChoice(&xPos, &yPos);
- wxString choices[2];
+ wxString *choices = new wxString[2];
choices[0] = _("Portrait");
choices[1] = _("Landscape");
Centre(wxBOTH);
InitDialog();
+ delete[] choices;
}
wxGenericPrintSetupDialog::~wxGenericPrintSetupDialog(void)
xPos = 5;
- wxString choices[2];
+ wxString *choices = new wxString[2];
choices[0] = _("Portrait");
choices[1] = _("Landscape");
orientationRadioBox = new wxRadioBox(this, wxPRINTID_ORIENTATION, _("Orientation"),
Centre(wxBOTH);
InitDialog();
+ delete [] choices;
}
wxGenericPageSetupDialog::~wxGenericPageSetupDialog(void)