We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1201ee7 commit 3ea9c2aCopy full SHA for 3ea9c2a
GUI/src/mainwindow.cpp
@@ -1460,7 +1460,11 @@ void MainWindow::on_actionAbout_triggered()
1460
{
1461
QString processors =
1462
QString{ Anime4KCPP::CoreInfo::supportedProcessors() }.
1463
+#if (QT_VERSION <= QT_VERSION_CHECK(5,14,0))
1464
+ split(',', QString::SkipEmptyParts).
1465
+#else
1466
split(',', Qt::SkipEmptyParts).
1467
+#endif
1468
join("\n ").
1469
insert(0, "\n ");
1470
0 commit comments