]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/univ/listbox.h
fixed wxALL_FILES definition in Unicode build
[wxWidgets.git] / include / wx / univ / listbox.h
index ddeb5111a4649528160c90ed9da352c1d28d8667..363f523ac8947f42ac50c9e37b5018e31f516fed 100644 (file)
@@ -13,7 +13,7 @@
 #define _WX_UNIV_LISTBOX_H_
 
 #ifdef __GNUG__
 #define _WX_UNIV_LISTBOX_H_
 
 #ifdef __GNUG__
-    #pragma implementation "univlistbox.h"
+    #pragma interface "univlistbox.h"
 #endif
 
 #include "wx/scrolwin.h"    // for wxScrollHelper
 #endif
 
 #include "wx/scrolwin.h"    // for wxScrollHelper
@@ -50,7 +50,7 @@
 // wxListBox: a list of selectable items
 // ----------------------------------------------------------------------------
 
 // wxListBox: a list of selectable items
 // ----------------------------------------------------------------------------
 
-class wxListBox : public wxListBoxBase, public wxScrollHelper
+class WXDLLEXPORT wxListBox : public wxListBoxBase, public wxScrollHelper
 {
 public:
     // ctors and such
 {
 public:
     // ctors and such
@@ -129,10 +129,10 @@ public:
     void Activate(int item = -1);
 
     // select or unselect the specified or current (if -1) item
     void Activate(int item = -1);
 
     // select or unselect the specified or current (if -1) item
-    void Select(bool sel = TRUE, int item = -1);
+    void DoSelect(int item = -1, bool sel = TRUE);
 
     // more readable wrapper
 
     // more readable wrapper
-    void Unselect(int item) { Select(FALSE, item); }
+    void DoUnselect(int item) { DoSelect(item, FALSE); }
 
     // select an item and send a notification about it
     void SelectAndNotify(int item);
 
     // select an item and send a notification about it
     void SelectAndNotify(int item);