Skip to content

Commit 46a1118

Browse files
committed
Fixed some spelling mistakes
1 parent f15539d commit 46a1118

38 files changed

Lines changed: 106 additions & 105 deletions

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Nicolas Le Cam
1212
Reijo Tomperi
1313
Robert Reif
1414
Slava Semushin
15+
vBm
1516
Vesa Pikki
1617
Zachary Blair
1718

cli/cmdlineparser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class CmdLineParser
4141
public:
4242
/**
4343
* The constructor.
44-
* @param settings Settings instance that will be modified accoding to
44+
* @param settings Settings instance that will be modified according to
4545
* options user has given.
4646
*/
4747
CmdLineParser(Settings *settings);

gui/applicationlist.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* (message) - Error message
4141
* (severity) - Error severity
4242
*
43-
* Example opening a file with Kate and make Kate scroll to the corret line:
43+
* Example opening a file with Kate and make Kate scroll to the correct line:
4444
* kate -l(line) (file)
4545
*
4646
*/
@@ -91,7 +91,7 @@ class ApplicationList : public QObject
9191
int GetApplicationCount() const;
9292

9393
/**
94-
* @brief Get spesific application's name
94+
* @brief Get specific application's name
9595
*
9696
* @param index Index of the application whose name to get
9797
* @return Name of the application

gui/checkstatistics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ unsigned CheckStatistics::GetCount(ShowTypes type) const
8383
break;
8484
case SHOW_NONE:
8585
default:
86-
qDebug() << "Unknown error type - returning zero statistices.";
86+
qDebug() << "Unknown error type - returning zero statistics.";
8787
break;
8888
}
8989
return count;

gui/checkthread.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class CheckThread : public QThread
7171
* Whole purpose of these states is to allow stopping of the checking. When
7272
* stopping we say for the thread (Stopping) that stop when current check
7373
* has been completed. Thread must be stopped cleanly, just terminating thread
74-
* likely causes unpredictable side-effedts.
74+
* likely causes unpredictable side-effects.
7575
*/
7676
enum State
7777
{

gui/filelist.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class FileList
7070

7171
/**
7272
* @brief Test if filename matches the filename extensions filtering.
73-
* @param true if filename matches filterin.
73+
* @param true if filename matches filtering.
7474
*/
7575
bool FilterMatches(const QFileInfo &inf);
7676

gui/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ void MainWindow::CheckDirectory()
315315

316316
bool MainWindow::GetCheckProject()
317317
{
318-
// We have succesfully loaded project earlier and use that project
318+
// We have successfully loaded project earlier and use that project
319319
if (mProject)
320320
return true;
321321

gui/resultsview.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public slots:
212212
bool mErrorsFound;
213213

214214
/**
215-
* @brief Should we show a "No errors found dialog" everytime no errors were found?
215+
* @brief Should we show a "No errors found dialog" every time no errors were found?
216216
*/
217217
bool mShowNoErrorsMessage;
218218

gui/threadhandler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class ThreadHandler : public QObject
8686
* @brief Start the threads to check the files
8787
*
8888
* @param settings Settings for checking
89-
* @param recheck Should we reuse the files we checked earleir
89+
* @param recheck Should we reuse the files we checked earlier
9090
*/
9191
void Check(const Settings &settings, bool recheck);
9292

gui/threadresult.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ class ThreadResult : public QObject, public ErrorLogger
7575
public slots:
7676

7777
/**
78-
* @brief Slot threads use to signal this class that a spesific file is checked
79-
* @param file File taht is checked
78+
* @brief Slot threads use to signal this class that a specific file is checked
79+
* @param file File that is checked
8080
*/
8181
void FileChecked(const QString &file);
8282
signals:

0 commit comments

Comments
 (0)