Fix typo aquire -> acquire

https://en.wiktionary.org/wiki/aquire
This commit is contained in:
Maxime Biette
2021-07-09 14:24:07 -04:00
parent 91c6823e0c
commit ac04432453
45 changed files with 234 additions and 234 deletions

View File

@ -25,7 +25,7 @@ public:
FileSourceModule(std::string name) : fileSelect("", {"Wav IQ Files (*.wav)", "*.wav", "All Files", "*"}) {
this->name = name;
config.aquire();
config.acquire();
fileSelect.setPath(config.conf["path"], true);
config.release();
@ -114,7 +114,7 @@ private:
core::setInputSampleRate(_this->sampleRate);
}
catch (std::exception e) {}
config.aquire();
config.acquire();
config.conf["path"] = _this->fileSelect.path;
config.release(true);
}