Minor text change...

This commit is contained in:
Mathieu Labbe
2015-01-14 12:11:49 -05:00
parent 645d2c4973
commit 199d9a948a

View File

@@ -1610,7 +1610,7 @@ void MainWindow::processRtabmapEventInit(int status, const QString & info)
// Temp database used, automatically backup with unique name (timestamp)
QString newName = QDateTime::currentDateTime().toString("yyMMdd-hhmmss");
bool ok = false;
newName = QInputDialog::getText(this, tr("Saving database..."), tr("Database name:"), QLineEdit::Normal, newName, &ok);
newName = QInputDialog::getText(this, tr("Save database?"), tr("Database name:"), QLineEdit::Normal, newName, &ok);
while(ok)
{
QString newPath = _preferencesDialog->getWorkingDirectory()+QDir::separator()+newName+".db";