Skip to content

Commit

Permalink
Adding possibility to add command line options when running doxygen f…
Browse files Browse the repository at this point in the history
…rom 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.
  • Loading branch information
albert-github committed Oct 7, 2020
1 parent 70e5213 commit e78c2e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/doxywizard/doxywizard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e78c2e4

Please sign in to comment.