X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f8efd2dfffcf23aa7ff72cea1cdba3cb8c88d9c4..7169360153f35fe579c7e72fd95a1dbbb2eff043:/src/xrc/xh_propdlg.cpp diff --git a/src/xrc/xh_propdlg.cpp b/src/xrc/xh_propdlg.cpp index 96bd4e2a23..d07e3a6b40 100644 --- a/src/xrc/xh_propdlg.cpp +++ b/src/xrc/xh_propdlg.cpp @@ -3,7 +3,6 @@ // Purpose: XRC resource handler for wxPropertySheetDialog // Author: Sander Berents // Created: 2007/07/12 -// RCS-ID: $Id$ // Copyright: (c) 2007 Sander Berents // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -89,12 +88,14 @@ wxObject *wxPropertySheetDialogXmlHandler::DoCreateResource() } } else - wxLogError(wxT("Error in resource.")); + { + ReportError(n, "propertysheetpage child must be a window"); + } return wnd; } else { - wxLogError(wxT("Error in resource: no control within wxPropertySheetDialog's tag.")); + ReportError("propertysheetpage must have a window child"); return NULL; } } @@ -111,7 +112,8 @@ wxObject *wxPropertySheetDialogXmlHandler::DoCreateResource() GetStyle(), GetName()); - if (HasParam(wxT("icon"))) dlg->SetIcon(GetIcon(wxT("icon"), wxART_FRAME_ICON)); + if (HasParam(wxT("icon"))) + dlg->SetIcons(GetIconBundle(wxT("icon"), wxART_FRAME_ICON)); SetupWindow(dlg);