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 6a72018 commit 0bba023Copy full SHA for 0bba023
addon/doxywizard/doxywizard.cpp
@@ -553,7 +553,11 @@ void MainWindow::runDoxygen()
553
m_runProcess->setEnvironment(env);
554
555
QStringList args;
556
+#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
557
+ QStringList runOptions = m_runOptions->text().split(QLatin1Char(' '),Qt::SkipEmptyParts);
558
+#else
559
QStringList runOptions = m_runOptions->text().split(QLatin1Char(' '),QString::SkipEmptyParts);
560
+#endif
561
562
args << runOptions;
563
args << QString::fromLatin1("-b"); // make stdout unbuffered
0 commit comments