From 449b6454d97c593ef3930bdfdc068ca3bf0ed2ca Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 4 Aug 2014 18:58:15 +0000 Subject: [PATCH] Take into account wxAnimationCtrl "animation" property in wxrc. The files used as the values of this property need to be included in the generated file too. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77005 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- utils/wxrc/wxrc.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utils/wxrc/wxrc.cpp b/utils/wxrc/wxrc.cpp index cc44c8828b..3a0d3da982 100644 --- a/utils/wxrc/wxrc.cpp +++ b/utils/wxrc/wxrc.cpp @@ -495,6 +495,10 @@ static bool NodeContainsFilename(wxXmlNode *node) return true; } + // wxAnimationCtrl animations: + if ( name == wxS("animation") ) + return true; + // URLs in wxHtmlWindow: if ( name == wxT("url") && parent != NULL &&