summaryrefslogtreecommitdiffstats
path: root/addon
diff options
context:
space:
mode:
authororbitcowboy <ettl.martin78@gmail.com>2014-12-15 16:02:31 (GMT)
committerorbitcowboy <ettl.martin78@gmail.com>2014-12-15 16:02:31 (GMT)
commit458fb1738f4e59586460daa2a1e3ad2e730306c4 (patch)
tree6bdbccdda4e071e3222fa912d4a3f7f3663ee10a /addon
parent2716fc48889c3cffe46903cdb3a64bb0ac735449 (diff)
downloadDoxygen-458fb1738f4e59586460daa2a1e3ad2e730306c4.zip
Doxygen-458fb1738f4e59586460daa2a1e3ad2e730306c4.tar.gz
Doxygen-458fb1738f4e59586460daa2a1e3ad2e730306c4.tar.bz2
Fixed typos in C/C++ comments. There are no functional changes.
Diffstat (limited to 'addon')
-rw-r--r--addon/doxywizard/doxywizard.cpp6
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/");