From: Vadim Zeitlin Date: Sun, 28 Oct 2012 13:31:50 +0000 (+0000) Subject: Don't return "void" to fix MSVC6 compilation. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0c1182328f1bcc577cb6771f8d743b91b75086d8 Don't return "void" to fix MSVC6 compilation. VC6 doesn't support returning void "value". git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72811 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/xrc/xmlreshandler.h b/include/wx/xrc/xmlreshandler.h index a92fee0349..7c7f3fece3 100644 --- a/include/wx/xrc/xmlreshandler.h +++ b/include/wx/xrc/xmlreshandler.h @@ -185,15 +185,15 @@ protected: // Everything else is simply forwarded to wxXmlResourceHandlerImpl. void ReportError(wxXmlNode *context, const wxString& message) { - return GetImpl()->ReportError(context, message); + GetImpl()->ReportError(context, message); } void ReportError(const wxString& message) { - return GetImpl()->ReportError(message); + GetImpl()->ReportError(message); } void ReportParamError(const wxString& param, const wxString& message) { - return GetImpl()->ReportParamError(param, message); + GetImpl()->ReportParamError(param, message); } bool IsOfClass(wxXmlNode *node, const wxString& classname) const