bool MyPropertySheetDialog::Create(...)
{
if (!wxPropertySheetDialog::Create(...))
- return @false;
+ return false;
CreateButtons(wxOK|wxCANCEL|wxHELP);
GetBookCtrl()->AddPage(panel, wxT("General"));
LayoutDialog();
- return @true;
+ return true;
}
@endcode