Skip to content

Commit

Permalink
Fixed typos in C/C++ comments. There are no functional changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
orbitcowboy committed Dec 15, 2014
1 parent 2716fc4 commit 458fb17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions addon/doxywizard/doxywizard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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/");
Expand Down
2 changes: 1 addition & 1 deletion qtools/qfeatures.h
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@
# define QT_NO_VBUTTONGROUP
#endif
/*!
Horizonal box layout widgets
Horizontal box layout widgets
*/
#ifdef QT_NO_FRAME
# define QT_NO_HBOX
Expand Down

0 comments on commit 458fb17

Please sign in to comment.