Mark some more methods as const

This commit is contained in:
Martin Kleusberg
2017-01-20 19:10:07 +01:00
parent c0d2e9131e
commit 5455fd8cb7
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -236,7 +236,7 @@ public:
bool removeField(const QString& sFieldName);
void setFields(const FieldVector& fields);
void setField(int index, FieldPtr f);
const FieldPtr& field(int index) { return m_fields[index]; }
const FieldPtr& field(int index) const { return m_fields[index]; }
QStringList fieldNames() const;
void setRowidColumn(const QString& rowid) { m_rowidColumn = rowid; }