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