Fix a compilation error in Qt5.14
This commit is contained in:
parent
4d9ba4c431
commit
a642553e7e
1 changed files with 5 additions and 0 deletions
5
main.cpp
5
main.cpp
|
@ -71,7 +71,12 @@ int main(int argc, char *argv[])
|
|||
qmlRegisterType<DesktopSettings>(uri, 1, 0, "DesktopSettings");
|
||||
qmlRegisterType<Fm>(uri, 1, 0, "Fm");
|
||||
qmlRegisterType<ShortCut>(uri, 1, 0, "ShortCut");
|
||||
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
|
||||
qmlRegisterType<QAction>();
|
||||
#else
|
||||
qmlRegisterAnonymousType<QAction>(uri, 1);
|
||||
#endif
|
||||
|
||||
QCommandLineParser parser;
|
||||
parser.setApplicationDescription(QStringLiteral("File Manager"));
|
||||
|
|
Loading…
Reference in a new issue