test: Fixed tests and removed test_log.txt

* Deleted PlainFileLogger
* Fixed clang warnings
This commit is contained in:
Eberhard Graether
2018-01-09 15:53:18 +01:00
parent 63590fc92d
commit c479493e02
13 changed files with 20 additions and 633 deletions
+3 -3
View File
@@ -56,7 +56,7 @@ void QtDialogView::hideUnknownProgressDialog()
setParentWindow(nullptr);
}
void QtDialogView::showProgressDialog(const std::string& title, const std::string& message, int progress)
void QtDialogView::showProgressDialog(const std::string& title, const std::string& message, size_t progress)
{
m_onQtThread(
[=]()
@@ -73,8 +73,8 @@ void QtDialogView::showProgressDialog(const std::string& title, const std::strin
else
{
sendStatusMessage = (
window->getTitle() != title ||
window->getMessage() != message ||
window->getTitle() != title ||
window->getMessage() != message ||
window->getProgress() != progress
);
}