Removed unused method of TrackPanelListener

This commit is contained in:
Paul Licameli 2015-08-30 12:34:36 -04:00
parent f5f436a3d1
commit ca761893c8
3 changed files with 0 additions and 8 deletions

View File

@ -4618,12 +4618,6 @@ int AudacityProject::TP_GetCurrentTool()
// TrackPanel callback method
void AudacityProject::TP_OnPlayKey()
{
OnPlayStop();
}
// TrackPanel callback method
void AudacityProject::TP_PushState(wxString desc, wxString shortDesc,
int flags)

View File

@ -399,7 +399,6 @@ class AUDACITY_DLL_API AudacityProject: public wxFrame,
virtual ToolsToolBar * TP_GetToolsToolBar();
virtual ControlToolBar * TP_GetControlToolBar();
virtual void TP_OnPlayKey();
virtual void TP_PushState(wxString longDesc, wxString shortDesc,
int flags);
virtual void TP_ModifyState(bool bWantsAutoSave); // if true, writes auto-save file. Should set only if you really want the state change restored after

View File

@ -27,7 +27,6 @@ class AUDACITY_DLL_API TrackPanelListener {
virtual ToolsToolBar * TP_GetToolsToolBar() = 0;
virtual ControlToolBar * TP_GetControlToolBar() = 0;
virtual void TP_OnPlayKey() = 0;
virtual void TP_PushState(wxString shortDesc, wxString longDesc,
int flags = PUSH_AUTOSAVE) = 0;
virtual void TP_ModifyState(bool bWantsAutoSave) = 0; // if true, writes auto-save file. Should set only if you really want the state change restored after