]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/listbox.h
image update
[wxWidgets.git] / include / wx / gtk1 / listbox.h
index 2a062629b6301e0cf50b0b3d8d8fa546060a46c5..1b24d42c254f4d4976b87f9653bd3a229aeddb79 100644 (file)
@@ -52,6 +52,7 @@ public:
                     const wxValidator& validator = wxDefaultValidator,
                    const wxString& name = wxListBoxNameStr )
   {
+      m_hasCheckBoxes = FALSE;
       Create(parent, id, pos, size, n, choices, style, validator, name);
   }
   ~wxListBox();
@@ -90,7 +91,9 @@ public:
   void SetString( int n, const wxString &string );
   void SetStringSelection( const wxString &string, bool select = TRUE );
     
+#if wxUSE_DRAG_AND_DROP
   void SetDropTarget( wxDropTarget *dropTarget );
+#endif
 
 // implementation
     
@@ -101,8 +104,9 @@ public:
   void ApplyWidgetStyle();
     
   GtkList   *m_list;
-  wxList   m_clientDataList;
-  wxList   m_clientObjectList;
+  wxList     m_clientDataList;
+  wxList     m_clientObjectList;
+  bool       m_hasCheckBoxes;
 };
 
 #endif // __GTKLISTBOXH__