refactor: clean up word list generator

This commit is contained in:
Michael Mandl 2024-03-20 16:51:46 +01:00
parent 6ba52ab73f
commit 7f18d0d6cc
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
4 changed files with 10 additions and 11 deletions

View file

@ -33,7 +33,7 @@ void MainWindow::setupAlgorithmSelector() {
void MainWindow::generateWordList() {
Timer timer;
word_list_ = WordListGenerator().generate();
word_list_ = WordListGenerator::generate();
timer.stop();
std::stringstream status_message;