diff options
author | albert-github <albert.tests@gmail.com> | 2020-10-07 10:35:22 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2020-10-07 10:35:22 (GMT) |
commit | e78c2e47afa40408dc95de50451e997d0ab357c0 (patch) | |
tree | bc1ccaadbf80bdd59c9402518cf43732b723f808 /addon/doxywizard | |
parent | 70e5213d3646460ce3a31a9afbcb498cdaa2b5b9 (diff) | |
download | Doxygen-e78c2e47afa40408dc95de50451e997d0ab357c0.zip Doxygen-e78c2e47afa40408dc95de50451e997d0ab357c0.tar.gz Doxygen-e78c2e47afa40408dc95de50451e997d0ab357c0.tar.bz2 |
Adding possibility to add command line options when running doxygen from doxygen wizard
For Qt5 `QT::SkipEmptyParts` is shown to be used , for QT4 this `QT::SkipEmptyParts` does not exist, but `QString::SkipEmptyParts`.
In Qt5 also `QString::SkipEmptyParts` still exists.
Diffstat (limited to 'addon/doxywizard')
-rwxr-xr-x | addon/doxywizard/doxywizard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addon/doxywizard/doxywizard.cpp b/addon/doxywizard/doxywizard.cpp index fa2ee3c..db4e6fb 100755 --- a/addon/doxywizard/doxywizard.cpp +++ b/addon/doxywizard/doxywizard.cpp @@ -507,7 +507,7 @@ void MainWindow::runDoxygen() m_runProcess->setEnvironment(env); QStringList args; - QStringList runOptions = m_runOptions->text().split(QLatin1Char(' '),Qt::SkipEmptyParts); + QStringList runOptions = m_runOptions->text().split(QLatin1Char(' '),QString::SkipEmptyParts); args << runOptions; args << QString::fromLatin1("-b"); // make stdout unbuffered |