mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-17 20:50:34 +01:00
Apply clang-tidy's modernize-use-auto
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5449 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
@@ -236,16 +236,16 @@ void DiagramFolioList::buildGrid(QPainter *qp, const QRectF &rect, int rows, int
|
||||
qreal y0 = tablesSpacing + rect.topLeft().y();
|
||||
|
||||
for (int i = 0; i < tables; ++i) {
|
||||
QRectF *tableRect = new QRectF(x0, y0, tableWidth, rect.height() - 2*tablesSpacing);
|
||||
auto *tableRect = new QRectF(x0, y0, tableWidth, rect.height() - 2*tablesSpacing);
|
||||
qp->drawRect(*tableRect);
|
||||
list_rectangles_.push_back(tableRect);
|
||||
for (int j = 1; j < rows; ++j) {
|
||||
QLineF *line = new QLineF(x0, y0 + j*rowHeight, x0 + tableWidth,y0 + j*rowHeight);
|
||||
auto *line = new QLineF(x0, y0 + j*rowHeight, x0 + tableWidth,y0 + j*rowHeight);
|
||||
qp->drawLine(*line);
|
||||
list_lines_.push_back(line);
|
||||
}
|
||||
for (int j = 0; j < cols-1; ++j) {
|
||||
QLineF *line = new QLineF(x0 + colWidths[j]*tableWidth, y0, x0 + colWidths[j]*tableWidth,y0 + rows*rowHeight);
|
||||
auto *line = new QLineF(x0 + colWidths[j]*tableWidth, y0, x0 + colWidths[j]*tableWidth,y0 + rows*rowHeight);
|
||||
qp->drawLine(*line);
|
||||
list_lines_.push_back(line);
|
||||
x0 += colWidths[j]*tableWidth;
|
||||
|
||||
Reference in New Issue
Block a user