1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-01 03:54:47 +02:00

Move project status string management to new attached object class

This commit is contained in:
Paul Licameli
2019-07-02 11:38:15 -04:00
parent efa66f5350
commit e2362bc25a
17 changed files with 131 additions and 45 deletions

View File

@@ -34,6 +34,7 @@
#include "Project.h"
#include "ProjectAudioIO.h"
#include "ProjectAudioManager.h"
#include "ProjectStatus.h"
#include "ProjectWindow.h"
#include "RefreshCode.h"
#include "Snap.h"
@@ -2207,7 +2208,7 @@ void AdornedRulerPanel::ProcessUIHandleResult
void AdornedRulerPanel::UpdateStatusMessage( const wxString &message )
{
GetProject()->SetStatus(message);
ProjectStatus::Get( *GetProject() ).Set(message);
}
void AdornedRulerPanel::CreateOverlays()