Spreadsheet: [skip ci] convert tabs to spaces

Minor housekeeping fix
This commit is contained in:
luzpaz
2023-01-12 12:17:26 +00:00
committed by wwmayer
parent 8a3b45ca73
commit 0410dc8f4d

View File

@@ -360,8 +360,8 @@ void QtColorPicker::paintEvent(QPaintEvent *e)
QPainter p(&pix);
int w = pix.width(); // width of cell in pixels
int h = pix.height(); // height of cell in pixels
int w = pix.width(); // width of cell in pixels
int h = pix.height(); // height of cell in pixels
p.setPen(QPen(Qt::gray));
p.setBrush(col);
p.drawRect(2, 2, w - 5, h - 5);
@@ -1025,8 +1025,8 @@ void ColorPickerItem::mousePressEvent(QMouseEvent *)
void ColorPickerItem::paintEvent(QPaintEvent *)
{
QPainter p(this);
int w = width(); // width of cell in pixels
int h = height(); // height of cell in pixels
int w = width(); // width of cell in pixels
int h = height(); // height of cell in pixels
p.setPen( QPen( Qt::gray, 0, Qt::SolidLine ) );