1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-14 17:14:07 +01:00

Bug 1685: garbage status bar messages and tooltips, scrub in Windows

This commit is contained in:
Paul Licameli
2017-07-14 23:02:32 -04:00
parent 558efda20c
commit 812f3649de
4 changed files with 5 additions and 5 deletions

View File

@@ -959,9 +959,9 @@ const wxString &Scrubber::GetUntranslatedStateString() const
return empty;
}
const wxString & Scrubber::StatusMessageForWave() const
wxString Scrubber::StatusMessageForWave() const
{
static wxString result;
wxString result;
result = "";
if( Seeks() )

View File

@@ -130,7 +130,7 @@ public:
// A string to put in the leftmost part of the status bar
// when scrub or seek is in progress, or else empty.
const wxString &GetUntranslatedStateString() const;
const wxString &StatusMessageForWave() const;
wxString StatusMessageForWave() const;
// All possible status strings.
static std::vector<wxString> GetAllUntranslatedStatusStrings();