We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 482502f commit 18dccd1Copy full SHA for 18dccd1
src/MainWindow.cpp
@@ -949,7 +949,11 @@ void MainWindow::executeQuery()
949
{
950
// The query takes the last placeholder as it may itself contain the sequence '%' + number
951
statusMessage = tr("%1 rows returned in %2ms from: %3").arg(
952
+#if QT_VERSION < 0x050000
953
sqlWidget->getModel()->totalRowCount()).arg(timer.elapsed()).arg(Qt::escape(queryPart.trimmed()));
954
+#else
955
+ sqlWidget->getModel()->totalRowCount()).arg(timer.elapsed()).arg(queryPart.trimmed().toHtmlEscaped());
956
+#endif
957
sqlWidget->enableSaveButton(true);
958
sql3status = SQLITE_OK;
959
}
0 commit comments