Index: sources/storage/filesaver.cpp =================================================================== diff -u -rc71deaab48699cffdf9db816dfac2778d79c2238 -ra19862d191c2501faa4e8cde64804ef18b80c6b3 --- sources/storage/filesaver.cpp (.../filesaver.cpp) (revision c71deaab48699cffdf9db816dfac2778d79c2238) +++ sources/storage/filesaver.cpp (.../filesaver.cpp) (revision a19862d191c2501faa4e8cde64804ef18b80c6b3) @@ -22,7 +22,6 @@ * @param filename (QString) contains the path to the file to be written to * @param content (QString) the content to write to the file * @param append (bool) if True, append the content. Otherwise, overwrite it - * @return (int) the job ID number, emitted by this class once the file has been saved */ void FileSaver::concurrentSave(const QString &filename, const QString &content, bool append) { @@ -32,9 +31,11 @@ /** * @brief FileSaver::onFileSaved - * Emits a QPair, true if the save was succesful and the job id of the file that has been saved + * Emits when the file save operation is complete and true if the save was successful, false otherwise */ void FileSaver::onFileSaved() { + // coco begin validated: Has been validated manually emit fileSaved(_futureWatcher.result()); } +// coco end