remove reference to ImportAsTapeTracks

This commit is contained in:
Paul Davis 2020-02-28 23:33:08 -07:00
parent 0738472fee
commit 53e743f4ae
2 changed files with 0 additions and 3 deletions

View file

@ -86,7 +86,6 @@ DISPLAYCONTROL(ShowWaveformsRecording)
IMPORTMODE(ImportAsRegion) IMPORTMODE(ImportAsRegion)
IMPORTMODE(ImportToTrack) IMPORTMODE(ImportToTrack)
IMPORTMODE(ImportAsTrack) IMPORTMODE(ImportAsTrack)
IMPORTMODE(ImportAsTapeTrack)
// if this is changed, remember to update the string table in sfdb_ui.cc // if this is changed, remember to update the string table in sfdb_ui.cc
IMPORTPOSITION(ImportAtTimestamp) IMPORTPOSITION(ImportAtTimestamp)

View file

@ -125,8 +125,6 @@ string2importmode (string const & str)
return ImportToTrack; return ImportToTrack;
} else if (str == _("to source list")) { } else if (str == _("to source list")) {
return ImportAsRegion; return ImportAsRegion;
} else if (str == _("as new tape tracks")) {
return ImportAsTapeTrack;
} }
warning << string_compose (_("programming error: unknown import mode string %1"), str) << endmsg; warning << string_compose (_("programming error: unknown import mode string %1"), str) << endmsg;