1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-20 17:41:13 +02:00

StopIfPaused is now a member function of ProjectAudioManager

This commit is contained in:
Paul Licameli
2019-07-03 10:27:58 -04:00
parent 2c840a75c5
commit ca8740b510
4 changed files with 13 additions and 12 deletions

View File

@@ -108,6 +108,8 @@ public:
// Stop playing or recording
void Stop(bool stopStream = true);
void StopIfPaused();
PlayMode GetLastPlayMode() const { return mLastPlayMode; }
private:
@@ -163,7 +165,6 @@ extern const ReservedCommandFlag
/// Namespace for functions for Transport menu
namespace TransportActions {
void StopIfPaused( AudacityProject &project );
bool DoPlayStopSelect( AudacityProject &project, bool click, bool shift );
void DoPlayStopSelect( AudacityProject &project );
}