]> git.saurik.com Git - wxWidgets.git/blobdiff - src/xrc/xmladv.cpp
Add support for wxAuiNotebook to XRC.
[wxWidgets.git] / src / xrc / xmladv.cpp
index ad3c96aa9315d22659d03b0866378f2111477d13..6f6f36067a5608f97e49f6c2183e3bc55740e8b6 100644 (file)
@@ -38,7 +38,7 @@
 // ============================================================================
 
 #if wxUSE_ANIMATIONCTRL
-wxAnimation wxXmlResourceHandler::GetAnimation(const wxString& param)
+wxAnimation wxXmlResourceHandlerImpl::GetAnimation(const wxString& param)
 {
     const wxString name = GetParamValue(param);
     if ( name.empty() )
@@ -60,8 +60,11 @@ wxAnimation wxXmlResourceHandler::GetAnimation(const wxString& param)
 
     if ( !ani.IsOk() )
     {
-        wxLogError(_("XRC resource: Cannot create animation from '%s'."),
-                   name.c_str());
+        ReportParamError
+        (
+            param,
+            wxString::Format("cannot create animation from \"%s\"", name)
+        );
         return wxNullAnimation;
     }