]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/module.h
Refresh() didn't work as it wasn't passed to subwindows
[wxWidgets.git] / include / wx / module.h
index aeee79b942142ef14295fdbaf3769f4d81218009..bbdfd7a42859a11e0f1fe8283ea002a362e4584b 100644 (file)
 
 // declare a linked list of modules
 class wxModule;
-WX_DECLARE_EXPORTED_LIST(wxModule, wxModuleList);
+WX_DECLARE_USER_EXPORTED_LIST(wxModule, wxModuleList, WXDLLIMPEXP_BASE);
 
 // declaring a class derived from wxModule will automatically create an
 // instance of this class on program startup, call its OnInit() method and call
 // OnExit() on program termination (but only if OnInit() succeeded)
-class WXDLLEXPORT wxModule : public wxObject
+class WXDLLIMPEXP_BASE wxModule : public wxObject
 {
 public:
     wxModule() {}