mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 17:11:10 +00:00
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).
25 lines
494 B
C++
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;
|
|
}
|