fix as per thread from http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/111645
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@59238 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -282,7 +282,10 @@ class WXDLLIMPEXP_SVG wxSVGFileDC : public wxDC
|
|||||||
|
|
||||||
void SetBrush(const wxBrush& brush) ;
|
void SetBrush(const wxBrush& brush) ;
|
||||||
|
|
||||||
|
#ifdef __WXMAC__
|
||||||
void SetTextForeground (const wxColour& textForegroundColour ) ;
|
void SetTextForeground (const wxColour& textForegroundColour ) ;
|
||||||
|
virtual void DoDrawSpline(wxList *points);
|
||||||
|
#endif
|
||||||
|
|
||||||
void SetFont(const wxFont& font) ;
|
void SetFont(const wxFont& font) ;
|
||||||
|
|
||||||
|
@@ -595,6 +595,7 @@ void wxSVGFileDC::NewGraphics ()
|
|||||||
wxASSERT_MSG(!wxSVG_DEBUG, wxT("wxSVGFileDC::NewGraphics Call executed")) ;
|
wxASSERT_MSG(!wxSVG_DEBUG, wxT("wxSVGFileDC::NewGraphics Call executed")) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __WXMAC__
|
||||||
void wxSVGFileDC::SetTextForeground ( const wxColour& textForegroundColour )
|
void wxSVGFileDC::SetTextForeground ( const wxColour& textForegroundColour )
|
||||||
{
|
{
|
||||||
m_textForegroundColour = textForegroundColour ;
|
m_textForegroundColour = textForegroundColour ;
|
||||||
@@ -602,6 +603,12 @@ void wxSVGFileDC::SetTextForeground ( const wxColour& textForegroundColour )
|
|||||||
wxASSERT_MSG(!wxSVG_DEBUG, wxT("wxSVGFileDC::SetSetTextForeground Call executed")) ;
|
wxASSERT_MSG(!wxSVG_DEBUG, wxT("wxSVGFileDC::SetSetTextForeground Call executed")) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void wxSVGFileDC::DoDrawSpline(wxList *points)
|
||||||
|
{
|
||||||
|
wxDCBase::DoDrawSpline(points);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
void wxSVGFileDC::SetFont(const wxFont& font)
|
void wxSVGFileDC::SetFont(const wxFont& font)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user