wxCocoa compilation fixes for visibility (missing DLL export macros)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48095 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
// NSView of the content view seems to return the entire window rectangle
|
||||
// (including decorations). Of course, that is not at all part of the
|
||||
// Cocoa or OpenStep APIs, but it might be a neat hack.
|
||||
class wxWindowDC: public wxDC
|
||||
class WXDLLIMPEXP_CORE wxWindowDC: public wxDC
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS(wxWindowDC)
|
||||
public:
|
||||
@@ -38,7 +38,7 @@ protected:
|
||||
virtual bool CocoaGetBounds(void *rectData);
|
||||
};
|
||||
|
||||
class wxClientDC: public wxWindowDC
|
||||
class WXDLLIMPEXP_CORE wxClientDC: public wxWindowDC
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS(wxClientDC)
|
||||
public:
|
||||
@@ -52,7 +52,7 @@ protected:
|
||||
virtual bool CocoaUnlockFocus();
|
||||
};
|
||||
|
||||
class wxPaintDC: public wxWindowDC
|
||||
class WXDLLIMPEXP_CORE wxPaintDC: public wxWindowDC
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS(wxPaintDC)
|
||||
public:
|
||||
|
Reference in New Issue
Block a user