[ion] Move Storage extensions declaration in Storage class

This commit is contained in:
Émilie Feral
2019-03-11 17:00:40 +01:00
parent be76784bb4
commit 15a4072fdc
14 changed files with 35 additions and 35 deletions

View File

@@ -14,7 +14,7 @@ const char * SequenceStore::firstAvailableName(int * nameIndex) {
int currentNameIndex = 0;
while (currentNameIndex < MaxNumberOfSequences) {
const char * name = k_sequenceNames[currentNameIndex];
if (Ion::Storage::sharedStorage()->recordBaseNamedWithExtension(name, Shared::GlobalContext::seqExtension).isNull()) {
if (Ion::Storage::sharedStorage()->recordBaseNamedWithExtension(name, Ion::Storage::seqExtension).isNull()) {
if (nameIndex) {
*nameIndex = currentNameIndex;
}