]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed compilation of multilib dll
authorVáclav Slavík <vslavik@fastmail.fm>
Fri, 4 Jul 2003 18:18:11 +0000 (18:18 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Fri, 4 Jul 2003 18:18:11 +0000 (18:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21639 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/html/helpdata.h
include/wx/mimetype.h
include/wx/module.h
src/html/htmlwin.cpp
src/html/m_layout.cpp

index 21719640c7267d75ae1f8674996ad69514ed1f84..ee861f43e254d3a4e6cf93c0a2262e2b8d986ec5 100644 (file)
@@ -77,7 +77,8 @@ protected:
 };
 
 
-WX_DECLARE_EXPORTED_OBJARRAY(wxHtmlBookRecord, wxHtmlBookRecArray);
+WX_DECLARE_USER_EXPORTED_OBJARRAY(wxHtmlBookRecord, wxHtmlBookRecArray,
+                                  WXDLLIMPEXP_HTML);
 
 
 struct wxHtmlContentsItem
index f7cab60e83f1ba2218bc6f6bc48e722787e49978..f332faf6413bf158674063b02623d9613578d726 100644 (file)
@@ -149,7 +149,8 @@ private:
 #endif // 0
 };
 
-WX_DECLARE_EXPORTED_OBJARRAY(wxFileTypeInfo, wxArrayFileTypeInfo);
+WX_DECLARE_USER_EXPORTED_OBJARRAY(wxFileTypeInfo, wxArrayFileTypeInfo,
+                                  WXDLLIMPEXP_BASE);
 
 // ----------------------------------------------------------------------------
 // wxFileType: gives access to all information about the files of given type.
index 181dff1e29a8dae92fec413dc57a94fa68aa7469..bbdfd7a42859a11e0f1fe8283ea002a362e4584b 100644 (file)
@@ -21,7 +21,7 @@
 
 // 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
index 6b6dc54236308a958e60bdbeb7b2ae331cc80408..6120a8b7bac54d8eaa509f8184e69f6e2e327ec5 100644 (file)
@@ -120,7 +120,7 @@ void wxHtmlWinAutoScrollTimer::Notify()
 //-----------------------------------------------------------------------------
 
 // item of history list
-class WXDLLEXPORT wxHtmlHistoryItem
+class WXDLLIMPEXP_HTML wxHtmlHistoryItem
 {
 public:
     wxHtmlHistoryItem(const wxString& p, const wxString& a) {m_Page = p, m_Anchor = a, m_Pos = 0;}
index 78424023c8c3de243619e1b3d97737f6b07ee2fa..b524a9db1c6cb55ba70e14b5f2e68401bb76b1e6 100644 (file)
@@ -66,7 +66,7 @@ FORCE_LINK_ME(m_layout)
 // array wxHtmlPrintout::m_PageBreaks of pagebreaks already set, and
 // set a new one only if it's not in that array.
 
-class WXDLLEXPORT wxHtmlPageBreakCell : public wxHtmlCell
+class wxHtmlPageBreakCell : public wxHtmlCell
 {
 public:
     wxHtmlPageBreakCell() {}