]> git.saurik.com Git - wxWidgets.git/commitdiff
got rid of wxXmlResourceHandler::CheckPlatform, the check is now done while loading...
authorVáclav Slavík <vslavik@fastmail.fm>
Sat, 5 Aug 2000 21:25:07 +0000 (21:25 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sat, 5 Aug 2000 21:25:07 +0000 (21:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@7953 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

contrib/include/wx/xml/xmlres.h

index 3d5a0e7164ee3e5a1b6726f6a69f8230605c7b3f..0087a4cf100e4a096154d184774652e90d0d0882 100644 (file)
@@ -128,6 +128,10 @@ class WXDLLEXPORT wxXmlResource : public wxObject
         // Creates resource from info in given node:
         wxObject *CreateResFromNode(wxXmlNode *node, wxObject *parent, wxObject *instance = NULL);
 
+        // Remove nodes with property "platform" that does not
+        // match current platform
+        void ProcessPlatformProperty(wxXmlNode *node);
+
     private:
         wxList m_Handlers;
         wxXmlResourceDataRecords m_Data;
@@ -190,10 +194,6 @@ class WXDLLEXPORT wxXmlResourceHandler : public wxObject
         // resource from it, FALSE otherwise.
         virtual bool CanHandle(wxXmlNode *node) = 0;
 
-        // Check "platform" property if it matches this platform
-        // that is, if this node 'exists' under this platform
-        static bool CheckPlatform(wxXmlNode *node);
-        
         void SetParentResource(wxXmlResource *res) { m_Resource = res; }