1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 09:01:15 +02:00

Move more functions out-of-line

This commit is contained in:
Paul Licameli
2019-03-23 11:36:49 -04:00
parent 2176de79fb
commit ce4ba9762b
4 changed files with 21 additions and 15 deletions

View File

@@ -432,3 +432,8 @@ InteractiveOutputTargets::InteractiveOutputTargets() :
)
{
}
void StatusBarTarget::Update(const wxString &message)
{
mStatus.SetStatusText(message, 0);
}

View File

@@ -219,10 +219,7 @@ public:
StatusBarTarget(wxStatusBar &sb)
: mStatus(sb)
{}
void Update(const wxString &message) override
{
mStatus.SetStatusText(message, 0);
}
void Update(const wxString &message) override;
};
/// Adds messages to a response queue (to be sent back to a script)