Skip to content

Commit

Permalink
Merge ecc6c6e into b87d96b
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Nov 26, 2018
2 parents b87d96b + ecc6c6e commit 5b7dc6e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Expand Up @@ -172,7 +172,7 @@ void BiosignalmlDataStoreExporterWorker::run()
delete recording;
}

// Let people know that our XSL transformation has been performed
// Let people know that our export is done

emit done(errorMessage);
}
Expand Down
Expand Up @@ -225,7 +225,7 @@ void CsvDataStoreExporterWorker::run()
errorMessage = tr("The CSV file could not be created.");
}

// Let people know that our XSL transformation has been performed
// Let people know that our export is done

emit done(errorMessage);
}
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/miscellaneous/Core/src/mathmlconverter.cpp
Expand Up @@ -69,8 +69,8 @@ void MathmlConverter::convert(const QString &pContentMathml)
void MathmlConverter::xslTransformationDone(const QString &pInput,
const QString &pOutput)
{
// Let people know that our MathML conversion has been performed (after
// having cleaned up its output)
// Let people know that our MathML conversion is done (after having cleaned
// up its output)

emit done(pInput, cleanPresentationMathml(pOutput));
}
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/miscellaneous/Core/src/xsltransformer.cpp
Expand Up @@ -66,7 +66,7 @@ void XslTransformerWorker::run()
if (!xmlQuery.evaluateTo(&output))
output = QString();

// Let people know that our XSL transformation has been performed
// Let people know that our XSL transformation is done

emit done(mInput, output);
}
Expand Down

0 comments on commit 5b7dc6e

Please sign in to comment.