mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-20 06:53:54 +00:00
minor cleanup
This commit is contained in:
parent
b7bffc8a79
commit
a5aebfb760
2 changed files with 3 additions and 3 deletions
|
@ -37,7 +37,7 @@ void CSMDoc::Operation::run()
|
|||
|
||||
QTimer timer;
|
||||
|
||||
timer.connect (&timer, SIGNAL (timeout()), this, SLOT (verify()));
|
||||
timer.connect (&timer, SIGNAL (timeout()), this, SLOT (executeStage()));
|
||||
|
||||
timer.start (0);
|
||||
|
||||
|
@ -54,7 +54,7 @@ void CSMDoc::Operation::abort()
|
|||
exit();
|
||||
}
|
||||
|
||||
void CSMDoc::Operation::verify()
|
||||
void CSMDoc::Operation::executeStage()
|
||||
{
|
||||
std::vector<std::string> messages;
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ namespace CSMDoc
|
|||
|
||||
private slots:
|
||||
|
||||
void verify();
|
||||
void executeStage();
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue