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:
parent
6db87d119d
commit
61003eb84c
4 changed files with 14 additions and 14 deletions
|
|
@ -39,7 +39,7 @@ class AceStep : public QObject
|
|||
|
||||
signals:
|
||||
void songGenerated(SongItem song);
|
||||
void generationCancled(SongItem song);
|
||||
void generationCanceled(SongItem song);
|
||||
void generationError(QString error);
|
||||
void progressUpdate(int progress);
|
||||
|
||||
|
|
@ -50,8 +50,8 @@ public slots:
|
|||
|
||||
public:
|
||||
AceStep(QObject* parent = nullptr);
|
||||
bool isGenerateing(SongItem* song = nullptr);
|
||||
void cancleGenerateion();
|
||||
bool isGenerating(SongItem* song = nullptr);
|
||||
void cancelGeneration();
|
||||
|
||||
private slots:
|
||||
void qwenProcFinished(int code, QProcess::ExitStatus status);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue