Made HelpGen compile here.
Documented wxPlotWindow. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5968 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -630,6 +630,17 @@ void wxPlotWindow::SetCurrent( wxPlotCurve* current )
|
||||
GetEventHandler()->ProcessEvent( event );
|
||||
}
|
||||
|
||||
void wxPlotWindow::Delete( wxPlotCurve* curve )
|
||||
{
|
||||
wxNode *node = m_curves.Find( curve );
|
||||
if (!node) return;
|
||||
|
||||
m_curves.DeleteObject( curve );
|
||||
|
||||
m_area->DeleteCurve( curve );
|
||||
m_area->Refresh( FALSE );
|
||||
}
|
||||
|
||||
wxPlotCurve *wxPlotWindow::GetCurrent()
|
||||
{
|
||||
return m_current;
|
||||
|
Reference in New Issue
Block a user