Remove const

This commit is contained in:
Jonas Kvinge
2024-06-12 18:09:23 +02:00
parent a36bf2df65
commit 4ba5113842
4 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ void SqlRow::Init(const SqlQuery &query) {
}
const QVariant SqlRow::value(const int n) const {
QVariant SqlRow::value(const int n) const {
Q_ASSERT(n < record_.count());

View File

@@ -35,7 +35,7 @@ class SqlRow {
int columns() const { return record_.count(); }
const QSqlRecord &record() const { return record_; }
const QVariant value(const int n) const;
QVariant value(const int n) const;
private:
void Init(const SqlQuery &query);