mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-16 09:31:14 +01:00
Fix incorrect type
This commit is contained in:
@@ -647,7 +647,7 @@ bool ProjectAudioManager::DoRecord(AudacityProject &project,
|
|||||||
wxString nameSuffix = wxString(wxT(""));
|
wxString nameSuffix = wxString(wxT(""));
|
||||||
|
|
||||||
if (useTrackNumber) {
|
if (useTrackNumber) {
|
||||||
nameSuffix += wxString::Format(wxT("%d"), 1 + numTracks + c);
|
nameSuffix += wxString::Format(wxT("%d"), 1 + (int) numTracks + c);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (useDateStamp) {
|
if (useDateStamp) {
|
||||||
|
|||||||
Reference in New Issue
Block a user