fix identation and style

Change-Id: I18e9e752e8dc0cf980f424264f274177b98a98be
Reviewed-by: Yunqiao Yin <charles.yin@nokia.com>
Reviewed-by: Robin Burchell <robin+qt@viroteck.net>
bb10
Mark Brand 2011-07-06 09:50:37 +02:00 committed by Qt by Nokia
parent 12b88cc7bb
commit 42d1cf0bbe
2 changed files with 3 additions and 2 deletions

View File

@ -1359,7 +1359,8 @@ bool QSqlTableModel::setRecord(int row, const QSqlRecord &record)
if (isOk)
emit dataChanged(createIndex(row, 0), createIndex(row, columnCount() - 1));
return isOk; }
return isOk;
}
}
return false;
}

View File

@ -106,7 +106,7 @@ public:
ModifiedRow(const ModifiedRow &other): op(other.op), rec(other.rec), primaryValues(other.primaryValues) {}
Op op;
QSqlRecord rec;
QSqlRecord primaryValues;
QSqlRecord primaryValues;
};
QSqlRecord editBuffer;