]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/treectrl.cpp
put user-specified CPP/C/CXXFLAGS after the ones we set from configure to allow overr...
[wxWidgets.git] / src / msw / treectrl.cpp
index e0a4d592b30188881323538e4314d748be507e52..40f9f53105811ecb2198dafee04d52baad85d0f9 100644 (file)
@@ -311,6 +311,11 @@ public:
         m_tree = tree;
     }
 
+    // give it a virtual dtor: not really needed as the class is never used
+    // polymorphically and not even allocated on heap at all, but this is safer
+    // (in case it ever is) and silences the compiler warnings for now
+    virtual ~wxTreeTraversal() { }
+
     // do traverse the tree: visit all items (recursively by default) under the
     // given one; return true if all items were traversed or false if the
     // traversal was aborted because OnVisit returned false