]> git.saurik.com Git - wxWidgets.git/commitdiff
add support for a data tag which can be used to embed arbitrary data into the generat...
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 11 Apr 2007 00:19:20 +0000 (00:19 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 11 Apr 2007 00:19:20 +0000 (00:19 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45394 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/wxrc/wxrc.cpp

index 4c8e1d502c8ad5f24c5f59752195b9d94ccd56e8..582ad5f2f05d6abb0c6000bce4f75996195b22fb 100644 (file)
@@ -112,6 +112,7 @@ public:
     bool CanBeUsedWithXRCCTRL(const wxString& name)
     {
         if (name == _T("tool") ||
+            name == _T("data") ||
             name == _T("unknown") ||
             name == _T("notebookpage") ||
             name == _T("separator") ||
@@ -455,7 +456,9 @@ static bool NodeContainsFilename(wxXmlNode *node)
    if ( name == _T("object") )
    {
        wxString klass = node->GetPropVal(_T("class"), wxEmptyString);
-       if (klass == _T("wxBitmap") || klass == _T("wxIcon"))
+       if (klass == _T("wxBitmap") ||
+               klass == _T("wxIcon") ||
+                klass == _T("data") )
            return true;
    }