From 69bf64793cc0b80dfcd5847465eabbc3ed3ff6bd Mon Sep 17 00:00:00 2001 From: Giuseppe 'ferdy' Miceli Date: Wed, 26 Feb 2014 15:59:06 +0100 Subject: [PATCH] Adding a polite "Please" in front of the warning message. Signed-off-by: Giuseppe 'ferdy' Miceli Signed-off-by: Dirk Hohndel --- qt-ui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index 7609bffcf..70415f077 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -976,7 +976,7 @@ void MainWindow::on_actionImportDiveLog_triggered() void MainWindow::editCurrentDive() { if (information()->isEditing() || DivePlannerPointsModel::instance()->currentMode() != DivePlannerPointsModel::NOTHING) { - QMessageBox::warning(this, tr("Warning"), tr("First finish the current edition before trying to do another.")); + QMessageBox::warning(this, tr("Warning"), tr("Please, first finish the current edition before trying to do another.")); return; }