Fix mixed EOL style.
This commit is contained in:
parent
0178fed611
commit
e791d1c960
|
@ -37,27 +37,27 @@ public:
|
||||||
ThreadResult();
|
ThreadResult();
|
||||||
virtual ~ThreadResult();
|
virtual ~ThreadResult();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get next unprocessed file
|
* @brief Get next unprocessed file
|
||||||
* @return File path
|
* @return File path
|
||||||
*/
|
*/
|
||||||
QString GetNextFile();
|
QString GetNextFile();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set list of files to check
|
* @brief Set list of files to check
|
||||||
* @param files List of files to check
|
* @param files List of files to check
|
||||||
*/
|
*/
|
||||||
void SetFiles(const QStringList &files);
|
void SetFiles(const QStringList &files);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Clear files to check
|
* @brief Clear files to check
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void ClearFiles();
|
void ClearFiles();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get the number of files to check
|
* @brief Get the number of files to check
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
int GetFileCount();
|
int GetFileCount();
|
||||||
|
|
||||||
|
@ -69,16 +69,16 @@ public:
|
||||||
void reportStatus(unsigned int index, unsigned int max);
|
void reportStatus(unsigned int index, unsigned int max);
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Slot threads use to signal this class that a spesific file is checked
|
* @brief Slot threads use to signal this class that a spesific file is checked
|
||||||
* @param file File taht is checked
|
* @param file File taht is checked
|
||||||
*/
|
*/
|
||||||
void FileChecked(const QString &file);
|
void FileChecked(const QString &file);
|
||||||
signals:
|
signals:
|
||||||
/**
|
/**
|
||||||
* @brief Progress signal
|
* @brief Progress signal
|
||||||
* @param value Current progress
|
* @param value Current progress
|
||||||
* @param max Maximum progress
|
* @param max Maximum progress
|
||||||
*/
|
*/
|
||||||
void Progress(int value, int max);
|
void Progress(int value, int max);
|
||||||
|
|
||||||
|
@ -99,27 +99,27 @@ signals:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Mutex
|
* @brief Mutex
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
mutable QMutex mutex;
|
mutable QMutex mutex;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief List of files to check
|
* @brief List of files to check
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
QStringList mFiles;
|
QStringList mFiles;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Max progress
|
* @brief Max progress
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
int mMaxProgress;
|
int mMaxProgress;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Current progress
|
* @brief Current progress
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
int mProgress;
|
int mProgress;
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in New Issue