Files
Andrey Bocharnikov 90d7bac594 fix: unify Qt 6.11 a11y crash filters in StatusQ
Move the iOS ObjectDestroyed VoiceOver workaround into StatusQ and add a
macOS WebEngine datepicker table-cell guard. Auto-install via a libStatusQ
constructor so no explicit call sites are needed (#21450, #21491).
2026-07-14 17:40:51 +04:00

25 lines
494 B
C++

#include <stdlib.h>
#include <unistd.h>
#include <qqml.h>
#include <QDir>
extern "C" {
void NimMain();
}
int main(int argc, char* argv[])
{
Q_INIT_RESOURCE(resources);
#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0)
qmlRegisterModule("Qt.labs.settings", 1, 1);
qmlRegisterModule("Qt.labs.settings", 1, 0);
qmlRegisterModuleImport("Qt.labs.settings", QQmlModuleImportModuleAny,
"QtCore", QQmlModuleImportLatest);
#endif
NimMain();
return 0;
}