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/branches/WX_3_0_BRANCH@77004 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-08-04 18:56:59 +00:00
parent 9958ba94b8
commit fee4387c69
2 changed files with 5 additions and 0 deletions

View File

@@ -637,6 +637,7 @@ All (GUI):
- Fix handling of custom colours in wxPropertyGrid choices (Artur Wieczorek).
- Add "hint" property to wxTextCtrl XRC handler.
- Allow using wxALIGN_CENTER, and not just CENTRE, in XRC for wxStaticText.
- Handle files used in wxAnimationCtrl "animation" property in wxrc.
wxGTK:

View File

@@ -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 &&