1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-21 16:37:12 +01:00

ProjectManager::GetHoursMinsString returns TranslatableString

This commit is contained in:
Paul Licameli
2019-12-25 14:33:18 -05:00
parent 4afd93e84e
commit 1887928fe2
3 changed files with 12 additions and 19 deletions

View File

@@ -437,10 +437,8 @@ void TimerRecordDialog::OnOK(wxCommandEvent& WXUNUSED(event))
if (iMinsRecording >= iMinsLeft) {
// Format the strings
wxString sRemainingTime;
sRemainingTime = projectManager.GetHoursMinsString(iMinsLeft);
wxString sPlannedTime;
sPlannedTime = projectManager.GetHoursMinsString(iMinsRecording);
auto sRemainingTime = projectManager.GetHoursMinsString(iMinsLeft);
auto sPlannedTime = projectManager.GetHoursMinsString(iMinsRecording);
// Create the message string
auto sMessage = XO(