Fix mixed EOL style.
This commit is contained in:
parent
88c16ab226
commit
acedcebf25
|
@ -49,21 +49,21 @@ public slots:
|
||||||
*/
|
*/
|
||||||
void CheckFiles();
|
void CheckFiles();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Slot to recheck files
|
* @brief Slot to recheck files
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void ReCheck();
|
void ReCheck();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Slot to clear all search results
|
* @brief Slot to clear all search results
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void ClearResults();
|
void ClearResults();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Show errors with type "all"
|
* @brief Show errors with type "all"
|
||||||
* @param checked Should errors be shown (truw) or hidden (false)
|
* @param checked Should errors be shown (truw) or hidden (false)
|
||||||
*/
|
*/
|
||||||
void ShowAll(bool checked);
|
void ShowAll(bool checked);
|
||||||
|
|
||||||
|
@ -107,22 +107,22 @@ public slots:
|
||||||
*/
|
*/
|
||||||
void CheckDirectory();
|
void CheckDirectory();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Slot to open program's settings dialog
|
* @brief Slot to open program's settings dialog
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void ProgramSettings();
|
void ProgramSettings();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Slot to open program's about dialog
|
* @brief Slot to open program's about dialog
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void About();
|
void About();
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Slot to stop processing files
|
* @brief Slot to stop processing files
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void Save();
|
void Save();
|
||||||
|
|
||||||
|
@ -135,45 +135,45 @@ protected slots:
|
||||||
void CheckDone();
|
void CheckDone();
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Helper function to toggle all show error menu items
|
* @brief Helper function to toggle all show error menu items
|
||||||
* @param checked Should all errors be shown (true) or hidden (false)
|
* @param checked Should all errors be shown (true) or hidden (false)
|
||||||
*/
|
*/
|
||||||
void ToggleAllChecked(bool checked);
|
void ToggleAllChecked(bool checked);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Helper function to enable/disable all check,recheck buttons
|
* @brief Helper function to enable/disable all check,recheck buttons
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void EnableCheckButtons(bool enable);
|
void EnableCheckButtons(bool enable);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Helper function to open a dialog to ask user to select files to check
|
* @brief Helper function to open a dialog to ask user to select files to check
|
||||||
*
|
*
|
||||||
* @param mode Dialog open mode (files or directories)
|
* @param mode Dialog open mode (files or directories)
|
||||||
*/
|
*/
|
||||||
void DoCheckFiles(QFileDialog::FileMode mode);
|
void DoCheckFiles(QFileDialog::FileMode mode);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get all files recursively from given path
|
* @brief Get all files recursively from given path
|
||||||
*
|
*
|
||||||
* @param path Path to get files from
|
* @param path Path to get files from
|
||||||
* @return List of file paths
|
* @return List of file paths
|
||||||
*/
|
*/
|
||||||
QStringList GetFilesRecursively(const QString &path);
|
QStringList GetFilesRecursively(const QString &path);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get our default cppcheck settings
|
* @brief Get our default cppcheck settings
|
||||||
*
|
*
|
||||||
* @return Default cppcheck settings
|
* @return Default cppcheck settings
|
||||||
*/
|
*/
|
||||||
Settings GetCppcheckSettings();
|
Settings GetCppcheckSettings();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Removes all unaccepted (by cppcheck core) files from the list
|
* @brief Removes all unaccepted (by cppcheck core) files from the list
|
||||||
*
|
*
|
||||||
* @param list List to remove unaccepted files from
|
* @param list List to remove unaccepted files from
|
||||||
* @return List of files that are all accepted by cppcheck core
|
* @return List of files that are all accepted by cppcheck core
|
||||||
*/
|
*/
|
||||||
QStringList RemoveUnacceptedFiles(const QStringList &list);
|
QStringList RemoveUnacceptedFiles(const QStringList &list);
|
||||||
|
|
||||||
|
@ -232,9 +232,9 @@ protected:
|
||||||
*/
|
*/
|
||||||
QAction mActionSettings;
|
QAction mActionSettings;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Action to show errors with type "all"
|
* @brief Action to show errors with type "all"
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
QAction mActionShowAll;
|
QAction mActionShowAll;
|
||||||
|
|
||||||
|
@ -305,9 +305,9 @@ protected:
|
||||||
*/
|
*/
|
||||||
ThreadHandler mThread;
|
ThreadHandler mThread;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief List of user defined applications to open errors with
|
* @brief List of user defined applications to open errors with
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
ApplicationList mApplications;
|
ApplicationList mApplications;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue