]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/treectrl.cpp
Changed some more name in wxSocket (internal)
[wxWidgets.git] / src / msw / treectrl.cpp
index 913713c5662a90651c628c422bb42793fce446f4..d9affa465f8abe62add4e730d9f73ead0609a336 100644 (file)
@@ -66,6 +66,7 @@
 // ----------------------------------------------------------------------------
 
 // a convenient wrapper around TV_ITEM struct which adds a ctor
+#pragma warning( disable : 4097 )
 struct wxTreeViewItem : public TV_ITEM
 {
     wxTreeViewItem(const wxTreeItemId& item,    // the item handle
@@ -78,6 +79,7 @@ struct wxTreeViewItem : public TV_ITEM
         hItem = (HTREEITEM) (WXHTREEITEM) item;
     }
 };
+#pragma warning( default : 4097 )
 
 // a class which encapsulates the tree traversal logic: it vists all (unless
 // OnVisit() returns FALSE) items under the given one