Consts and grammar

This commit is contained in:
David Sansome 2010-06-24 18:59:09 +00:00
parent 5f9c1bb2aa
commit f9e3d405cd
2 changed files with 6 additions and 6 deletions

View File

@ -86,7 +86,7 @@ void Organise::ProcessSomeFiles() {
// Get the destination filename
QString dest_filename = destination_ + "/" + format_.GetFilenameForSong(song);
// Don't do anything if it's the destination is the same as the source
// Don't do anything if the destination is the same as the source
if (filename == dest_filename)
continue;

View File

@ -43,11 +43,11 @@ private:
QThread* original_thread_;
TaskManager* task_manager_;
QString destination_;
OrganiseFormat format_;
bool copy_;
bool overwrite_;
QStringList files_;
const QString destination_;
const OrganiseFormat format_;
const bool copy_;
const bool overwrite_;
const QStringList files_;
int task_id_;
int progress_;