fix: correct typos in comments, error messages, variables

- Fixed spelling in comments throughout codebase
- Corrected error messages and user-facing strings
- Standardized variable names (cancleGenerateion --> cancelGeneration where needed)
- No functional changes, purely cosmetic fixes
This commit is contained in:
unknown 2026-03-16 17:46:12 +04:00 committed by uvos
parent 6db87d119d
commit 61003eb84c
4 changed files with 14 additions and 14 deletions

View file

@ -63,7 +63,7 @@ MainWindow::MainWindow(QWidget *parent)
connect(audioPlayer, &AudioPlayer::positionChanged, this, &MainWindow::updatePosition);
connect(audioPlayer, &AudioPlayer::durationChanged, this, &MainWindow::updateDuration);
connect(aceStep, &AceStep::songGenerated, this, &MainWindow::songGenerated);
connect(aceStep, &AceStep::generationCancled, this, &MainWindow::generationCanceld);
connect(aceStep, &AceStep::generationCanceled, this, &MainWindow::generationCanceld);
connect(aceStep, &AceStep::generationError, this, &MainWindow::generationError);
connect(aceStep, &AceStep::progressUpdate, ui->progressBar, &QProgressBar::setValue);
@ -102,7 +102,7 @@ MainWindow::MainWindow(QWidget *parent)
MainWindow::~MainWindow()
{
aceStep->cancleGenerateion();
aceStep->cancelGeneration();
autoSavePlaylist();
saveSettings();
@ -523,7 +523,7 @@ void MainWindow::ensureSongsInQueue(bool enqeueCurrent)
SongItem lastSong;
SongItem workerSong;
if(aceStep->isGenerateing(&workerSong))
if(aceStep->isGenerating(&workerSong))
lastSong = workerSong;
else if(!generatedSongQueue.empty())
lastSong = generatedSongQueue.last();
@ -553,7 +553,7 @@ void MainWindow::ensureSongsInQueue(bool enqeueCurrent)
void MainWindow::flushGenerationQueue()
{
generatedSongQueue.clear();
aceStep->cancleGenerateion();
aceStep->cancelGeneration();
isGeneratingNext = false;
}