From c171a6350d958f765fe513c611a7e36fa95dcf4c Mon Sep 17 00:00:00 2001 From: Martin Brodbeck Date: Tue, 1 Oct 2019 11:47:53 +0200 Subject: [PATCH] message improved --- src/gui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp index 9594ece..678a5cf 100644 --- a/src/gui/mainwindow.cpp +++ b/src/gui/mainwindow.cpp @@ -477,7 +477,7 @@ void MainWindow::onImportSellerExcelActionTriggered() using namespace std::string_literals; std::ostringstream msg; - msg << "Aus der Excel-Datei wurden "s << std::to_string(numImported) + msg << "Aus der Excel/CSV-Datei wurden "s << std::to_string(numImported) << " Verkäufer importiert."; QMessageBox(QMessageBox::Icon::Information, "Verkäufer erfolgreich importiert", msg.str().c_str(), QMessageBox::StandardButton::Ok, this)