]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/include/wx/fl/garbagec.h
mark slider as being transparent, otherwise it has ugly solid grey background when...
[wxWidgets.git] / contrib / include / wx / fl / garbagec.h
index b5f991abfa733c060d697d301d22373d138fdd8f..5e3da01ef7184903535363e6353cd5749fda5e08 100644 (file)
@@ -17,6 +17,7 @@
 #endif
 
 #include "wx/list.h"
 #endif
 
 #include "wx/list.h"
+#include "wx/fl/fldefs.h"
 
 struct GCItem
 {
 
 struct GCItem
 {
@@ -24,16 +25,16 @@ struct GCItem
     wxList    mRefs;   // references to other nodes
 };
 
     wxList    mRefs;   // references to other nodes
 };
 
-inline void* gc_node_to_obj( wxNode* pGCNode )
+inline void* gc_node_to_obj( wxObjectList::compatibility_iterator pGCNode )
 {
 {
-    return ( (GCItem*) (pGCNode->Data()) )->mpObj;
+    return ( (GCItem*) (pGCNode->GetData()) )->mpObj;
 }
 
 /*
 This class implements an extremely slow but simple garbage collection algorithm.
 */
 
 }
 
 /*
 This class implements an extremely slow but simple garbage collection algorithm.
 */
 
-class GarbageCollector
+class WXDLLIMPEXP_FL GarbageCollector
 {
 protected:
     wxList mAllNodes;
 {
 protected:
     wxList mAllNodes;