X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6f6a69cb55382b4ba9d31f486c0bc9cc83524f1c..43c5b6e808f083617eb42cb48e77366844f8fb5c:/src/xrc/xh_statbar.cpp diff --git a/src/xrc/xh_statbar.cpp b/src/xrc/xh_statbar.cpp index fe14c250d7..0df6782e19 100644 --- a/src/xrc/xh_statbar.cpp +++ b/src/xrc/xh_statbar.cpp @@ -79,7 +79,17 @@ wxObject *wxStatusBarXmlHandler::DoCreateResource() else if (first == wxT("wxSB_RAISED")) style[i] = wxSB_RAISED; else if (!first.empty()) - wxLogError(wxT("Error in resource, unknown statusbar field style: ") + first); + { + ReportParamError + ( + "styles", + wxString::Format + ( + "unknown status bar field style \"%s\"", + first + ) + ); + } if(styles.Find(wxT(','))) styles.Remove(0, styles.Find(wxT(',')) + 1);