Skip to content

Commit d26fc11

Browse files
author
Dimitri van Heesch
committed
Merge branch 'master' of github.com:doxygen/doxygen
2 parents 050fce2 + a6f6364 commit d26fc11

File tree

4 files changed

+143
-108
lines changed

4 files changed

+143
-108
lines changed

addon/doxywizard/doxywizard.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#define MAX_RECENT_FILES 10
1212

13-
const int messageTimeout = 5000; //!< status bar message timeout in millisec.
13+
const int messageTimeout = 5000; //!< status bar message timeout in milliseconds.
1414

1515
MainWindow &MainWindow::instance()
1616
{
@@ -78,7 +78,7 @@ MainWindow::MainWindow()
7878
runLayout->addWidget(showSettings);
7979
runLayout->addWidget(m_saveLog);
8080

81-
// output produced by doxygen
81+
// output produced by Doxygen
8282
runTabLayout->addLayout(runLayout);
8383
runTabLayout->addWidget(new QLabel(tr("Output produced by doxygen")));
8484
QGridLayout *grid = new QGridLayout;
@@ -427,7 +427,7 @@ void MainWindow::runDoxygen()
427427
qDebug() << tr("Doxygen path: ") << doxygenPath;
428428
if ( !QFile(doxygenPath + QString::fromAscii("doxygen")).exists() )
429429
{
430-
// No doygen binary in the resources, if there is a system doxygen binary, use that instead
430+
// No Doxygen binary in the resources, if there is a system Doxygen binary, use that instead
431431
if ( QFile(QString::fromAscii("/usr/local/bin/doxygen")).exists() )
432432
{
433433
doxygenPath = QString::fromAscii("/usr/local/bin/");

qtools/qfeatures.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@
637637
# define QT_NO_VBUTTONGROUP
638638
#endif
639639
/*!
640-
Horizonal box layout widgets
640+
Horizontal box layout widgets
641641
*/
642642
#ifdef QT_NO_FRAME
643643
# define QT_NO_HBOX

0 commit comments

Comments
 (0)