Use static QMetaObject::invokeMethod

This commit is contained in:
Jonas Kvinge
2021-09-09 21:53:14 +02:00
parent d35d3aabc3
commit 24a3ac9811
17 changed files with 53 additions and 53 deletions

View File

@@ -85,7 +85,7 @@ bool FilesystemDevice::Init() {
}
void FilesystemDevice::CloseAsync() {
metaObject()->invokeMethod(this, "Close", Qt::QueuedConnection);
QMetaObject::invokeMethod(this, "Close", Qt::QueuedConnection);
}
void FilesystemDevice::Close() {