Commit a6f6364e authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge pull request #267 from orbitcowboy/master

Fixed typos in C/C++ comments. There are no functional changes.
parents 5fb9998a 458fb173
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
#define MAX_RECENT_FILES 10 #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() MainWindow &MainWindow::instance()
{ {
...@@ -78,7 +78,7 @@ MainWindow::MainWindow() ...@@ -78,7 +78,7 @@ MainWindow::MainWindow()
runLayout->addWidget(showSettings); runLayout->addWidget(showSettings);
runLayout->addWidget(m_saveLog); runLayout->addWidget(m_saveLog);
// output produced by doxygen // output produced by Doxygen
runTabLayout->addLayout(runLayout); runTabLayout->addLayout(runLayout);
runTabLayout->addWidget(new QLabel(tr("Output produced by doxygen"))); runTabLayout->addWidget(new QLabel(tr("Output produced by doxygen")));
QGridLayout *grid = new QGridLayout; QGridLayout *grid = new QGridLayout;
...@@ -427,7 +427,7 @@ void MainWindow::runDoxygen() ...@@ -427,7 +427,7 @@ void MainWindow::runDoxygen()
qDebug() << tr("Doxygen path: ") << doxygenPath; qDebug() << tr("Doxygen path: ") << doxygenPath;
if ( !QFile(doxygenPath + QString::fromAscii("doxygen")).exists() ) 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() ) if ( QFile(QString::fromAscii("/usr/local/bin/doxygen")).exists() )
{ {
doxygenPath = QString::fromAscii("/usr/local/bin/"); doxygenPath = QString::fromAscii("/usr/local/bin/");
......
...@@ -637,7 +637,7 @@ ...@@ -637,7 +637,7 @@
# define QT_NO_VBUTTONGROUP # define QT_NO_VBUTTONGROUP
#endif #endif
/*! /*!
Horizonal box layout widgets Horizontal box layout widgets
*/ */
#ifdef QT_NO_FRAME #ifdef QT_NO_FRAME
# define QT_NO_HBOX # define QT_NO_HBOX
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment