]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/choice.h
Avoid double free in wxComboBox::SetClientObject.
[wxWidgets.git] / include / wx / mac / choice.h
index 3f9909e0315e7911ba97024cc562dee0bb78c7e4..26ac3359c0766f78447bcd7b9bc4b7c3fbc77eb8 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_CHOICE_H_
 #define _WX_CHOICE_H_
 
-#if defined(__GNUG__) && !defined(__APPLE__)
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "choice.h"
 #endif
 
@@ -72,11 +72,14 @@ public:
 
 protected:
     virtual wxSize DoGetBestSize() const ;
+
+public: // for wxComboBox only
     virtual void DoSetItemClientData( int n, void* clientData );
     virtual void* DoGetItemClientData( int n ) const;
     virtual void DoSetItemClientObject( int n, wxClientData* clientData );
     virtual wxClientData* DoGetItemClientObject( int n ) const;
 
+protected:
     // free all memory we have (used by Clear() and dtor)
     // prevent collision with some BSD definitions of macro Free()   
     void FreeData();