diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-12-17 19:01:28 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-12-17 19:01:28 (GMT) |
commit | d26fc11e91635fee534b07fec2ac1324b6cd427e (patch) | |
tree | 217087879d8c480f4d5ffb724cb1a55aa6dbbe0b /addon | |
parent | 050fce2b73d6e4455808ab86da2fddcf2f26e9b5 (diff) | |
parent | a6f6364ee203fc7ed3defaa3c8ed9fed1d50ce3c (diff) | |
download | Doxygen-d26fc11e91635fee534b07fec2ac1324b6cd427e.zip Doxygen-d26fc11e91635fee534b07fec2ac1324b6cd427e.tar.gz Doxygen-d26fc11e91635fee534b07fec2ac1324b6cd427e.tar.bz2 |
Merge branch 'master' of github.com:doxygen/doxygen
Diffstat (limited to 'addon')
-rw-r--r-- | addon/doxywizard/doxywizard.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/addon/doxywizard/doxywizard.cpp b/addon/doxywizard/doxywizard.cpp index 26df065..d0728ae 100644 --- a/addon/doxywizard/doxywizard.cpp +++ b/addon/doxywizard/doxywizard.cpp @@ -10,7 +10,7 @@ #define MAX_RECENT_FILES 10 -const int messageTimeout = 5000; //!< status bar message timeout in millisec. +const int messageTimeout = 5000; //!< status bar message timeout in milliseconds. MainWindow &MainWindow::instance() { @@ -78,7 +78,7 @@ MainWindow::MainWindow() runLayout->addWidget(showSettings); runLayout->addWidget(m_saveLog); - // output produced by doxygen + // output produced by Doxygen runTabLayout->addLayout(runLayout); runTabLayout->addWidget(new QLabel(tr("Output produced by doxygen"))); QGridLayout *grid = new QGridLayout; @@ -427,7 +427,7 @@ void MainWindow::runDoxygen() qDebug() << tr("Doxygen path: ") << doxygenPath; if ( !QFile(doxygenPath + QString::fromAscii("doxygen")).exists() ) { - // No doygen binary in the resources, if there is a system doxygen binary, use that instead + // No Doxygen binary in the resources, if there is a system Doxygen binary, use that instead if ( QFile(QString::fromAscii("/usr/local/bin/doxygen")).exists() ) { doxygenPath = QString::fromAscii("/usr/local/bin/"); |