Missing wxPen (dashes) members.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37740 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-02-26 10:45:38 +00:00
parent 1914bb8e12
commit c644b82e76
2 changed files with 23 additions and 0 deletions

View File

@@ -404,6 +404,25 @@ void wxPen::SetDashes( int WXUNUSED(nNbDashes),
//
} // end of wxPen::SetDashes
int wxPen::GetDashes( wxDash **ptr ) const
{
// TODO
*ptr = (wxDash*) NULL;
return 0;
}
int wxPen::GetDashCount() const
{
// TODO
return 0;
}
wxDash* wxPen::GetDash() const
{
// TODO
return NULL;
}
void wxPen::SetJoin(
int nJoin
)