]> git.saurik.com Git - wxWidgets.git/blobdiff - src/xrc/xmladv.cpp
fix preprocessor expression, closes #12822
[wxWidgets.git] / src / xrc / xmladv.cpp
index 729cd3454d1790ecdd47fdbeadc26f6211fadb0b..5087147e2fefed94c0c7ce09775ef97ac71f0ca5 100644 (file)
@@ -30,7 +30,7 @@
 #include "wx/xrc/xmlres.h"
 
 #ifndef WX_PRECOMP
-    #include "wx/string.h"
+    #include "wx/log.h"
 #endif // WX_PRECOMP
 
 // ============================================================================
@@ -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;
     }