mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-04 22:29:27 +02:00
Removed unused method of TrackPanelListener
This commit is contained in:
parent
f5f436a3d1
commit
ca761893c8
@ -4618,12 +4618,6 @@ int AudacityProject::TP_GetCurrentTool()
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
// TrackPanel callback method
|
|
||||||
void AudacityProject::TP_OnPlayKey()
|
|
||||||
{
|
|
||||||
OnPlayStop();
|
|
||||||
}
|
|
||||||
|
|
||||||
// TrackPanel callback method
|
// TrackPanel callback method
|
||||||
void AudacityProject::TP_PushState(wxString desc, wxString shortDesc,
|
void AudacityProject::TP_PushState(wxString desc, wxString shortDesc,
|
||||||
int flags)
|
int flags)
|
||||||
|
@ -399,7 +399,6 @@ class AUDACITY_DLL_API AudacityProject: public wxFrame,
|
|||||||
virtual ToolsToolBar * TP_GetToolsToolBar();
|
virtual ToolsToolBar * TP_GetToolsToolBar();
|
||||||
virtual ControlToolBar * TP_GetControlToolBar();
|
virtual ControlToolBar * TP_GetControlToolBar();
|
||||||
|
|
||||||
virtual void TP_OnPlayKey();
|
|
||||||
virtual void TP_PushState(wxString longDesc, wxString shortDesc,
|
virtual void TP_PushState(wxString longDesc, wxString shortDesc,
|
||||||
int flags);
|
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
|
virtual void TP_ModifyState(bool bWantsAutoSave); // if true, writes auto-save file. Should set only if you really want the state change restored after
|
||||||
|
@ -27,7 +27,6 @@ class AUDACITY_DLL_API TrackPanelListener {
|
|||||||
virtual ToolsToolBar * TP_GetToolsToolBar() = 0;
|
virtual ToolsToolBar * TP_GetToolsToolBar() = 0;
|
||||||
virtual ControlToolBar * TP_GetControlToolBar() = 0;
|
virtual ControlToolBar * TP_GetControlToolBar() = 0;
|
||||||
|
|
||||||
virtual void TP_OnPlayKey() = 0;
|
|
||||||
virtual void TP_PushState(wxString shortDesc, wxString longDesc,
|
virtual void TP_PushState(wxString shortDesc, wxString longDesc,
|
||||||
int flags = PUSH_AUTOSAVE) = 0;
|
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
|
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user